Update Creatives Status

📘

PATCH https://api.kayzen.io/v1/creatives/statuses

Use this API to update the creatives of a specified campaign.

See below for supported fields and param

FieldParamRequired/ OptionalDescription
campaign_idintrequiredID of the campaign for which we want to change the creatives'
creativesArray[JSON]requiredFormat of the creative
is in the table below.

Format of the creative

FieldParamRequired/ OptionalDescription
idintrequiredId of the creative required to be updated
statusstringrequiredSupported Values -
- paused
- running
- deleted
curl -X PUT \
'https://api.kayzen.io/v1/creatives/statuses' \
-d '{ "creatives": [{ "id": 1234567, "status": "paused"}], "campaign_id": 123456 }' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
{"ok": true}