curl -X POST "https://api.wemasy.nl/api/services/ads-protection/v1/social-campaigns/fetch" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"social_account_id": "eyJpdiI6Ik...",
"customer_account_id": 1234567890
}'
fetch('https://api.wemasy.nl/api/services/ads-protection/v1/social-campaigns/fetch', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"social_account_id": "eyJpdiI6Ik...",
"customer_account_id": 1234567890
})})
.then(r => r.json())
.then(data => console.log(data));
$response = Http::withToken('YOUR_API_TOKEN')
->accept('application/json')
->post('https://api.wemasy.nl/api/services/ads-protection/v1/social-campaigns/fetch', {
"social_account_id": "eyJpdiI6Ik...",
"customer_account_id": 1234567890
});
$data = $response->json();
import requests
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Accept": "application/json"
}
data = {
"social_account_id": "eyJpdiI6Ik...",
"customer_account_id": 1234567890
}
r = requests.post("https://api.wemasy.nl/api/services/ads-protection/v1/social-campaigns/fetch", headers=headers, json=data)
print(r.json())