Create Creative

Create Creative

POST https://api.ocamba.com/api/v1/adex/creatives

Creates a new Creative object

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

Responses

201 Created

HTTP/1.1 201 Created
Content-Type: application/json
Responses
Note
1
This resource can only be added to the internal campaign type.