Skip to main content
PATCH
/
networks
/
patch
/
advertiser
/
apply
Apply Advertiser Bulk Edit
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/patch/advertiser/apply \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_advertiser_ids": [
    13
  ],
  "fields": [
    {
      "field_type": "advertiser_status",
      "field_value": "active",
      "operator": "overwrite"
    }
  ]
}
'
{
  "result": true
}
Apply bulk changes to one or more advertisers. This persists the changes permanently. Use the Bulk Edit Preview endpoint first to validate changes before applying them. Each field to change requires a field_type, a field_value (whose type depends on the field), and an operator that controls how the value is applied.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_advertiser_ids
integer[]
required

Array of advertiser IDs to apply changes to.

fields
object[]
required

Array of field changes to apply. Each item specifies a field type, the new value, and how to apply it.

Response

200 - application/json

OK

result
boolean

Whether the bulk edit was applied successfully.