Skip to main content
PATCH
/
networks
/
custom
/
creative
Bulk Update Custom Creative Status
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/custom/creative \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "custom_creative_setting_ids": [
    1,
    2,
    3
  ],
  "status": "inactive"
}
'
{
  "result": true
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
custom_creative_setting_ids
integer[]
required

List of custom creative setting IDs to update.

status
enum<string>
required

New status for all specified settings.

Available options:
active,
inactive

Response

200 - application/json

OK

result
boolean