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

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_id
integer
required

The offer ID that the URLs belong to.

network_offer_url_ids
integer[]
required

Array of offer URL IDs to modify.

fields
object[]
required

Array of field modifications to apply.

Response

200 - application/json

OK

result
boolean

Whether the bulk edit was successful.