Delete Campaign limit

Delete Campaign limit

DELETE https://api.ocamba.com/api/v1/adex/campaign-limits/{id}

Deletes a Campaign limit

Path parameters

parameters
DELETE https://api.ocamba.com/api/v1/adex/campaign-limits/{id} HTTP/1.1
Host: api.ocamba.com
Authorization: Bearer YOUR_SECRET_TOKEN
curl -X DELETE "https://api.ocamba.com/api/v1/adex/campaign-limits/{id}" \
  -H "Authorization: Bearer $TOKEN"
fetch("https://api.ocamba.com/api/v1/adex/campaign-limits/{id}", {
  method: "DELETE",
  headers: { Authorization: `Bearer ${TOKEN}` }
}).then(r => r.json());
$ch = curl_init("https://api.ocamba.com/api/v1/adex/campaign-limits/{id}");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer $token"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

204 No Content

HTTP/1.1 204 No Content
Content-Type: application/json
Responses

Warning
1
This change will be automatically synchronized to an ad server.
Note
1
We recommend you consider other options before deletion.
Tip
1
If you don’t know the campaign limit id, list the campaign limits to find it.