Skip to main content
PATCH
/
networks
/
patch
/
offers
/
creative
/
apply
Bulk Edit Creatives
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/patch/offers/creative/apply \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_creative_ids": [
    10,
    11,
    12
  ],
  "fields": [
    {
      "field_type": "creative_status",
      "field_value": "paused",
      "operator": "overwrite"
    }
  ]
}
'
{
  "result": true
}

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

Use this file to discover all available pages before exploring further.

Apply bulk edits to multiple creatives at once. Specify the creative IDs to modify and an array of field modifications. Patchable fields include name, is_private, and creative_status.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_creative_ids
integer[]
required

Array of creative IDs to modify.

fields
object[]
required

Array of field modifications to apply.

Response

200 - application/json
result
boolean

Whether the bulk edit was successful.