Skip to main content
PATCH
/
networks
/
patch
/
offerurls
/
apply
Apply Offer URL Bulk Edit
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
}
Apply bulk edits to multiple offer URLs at once. Specify the offer ID, the list of offer URL IDs to modify, and an array of field modifications with their operators (overwrite, append, delete, clear).

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 ID of the offer to which the offer URLs are associated.

network_offer_url_ids
integer[]
required

The unique IDs of the offer URLs that will be modified.

fields
object[]
required

A list of the fields that will be modified.

Response

200 - application/json
result
boolean

Whether the bulk edit was successful.