Skip to main content
PATCH
/
networks
/
patch
/
offers
/
apply
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/patch/offers/apply \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_offer_ids": [
    1,
    2,
    3
  ],
  "fields": [
    {
      "field_type": "offer_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 changes to multiple offers at once. Allows you to update specific fields across many offers without sending the full offer object for each one. See the field_type enum below for the full list of patchable fields.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_ids
integer[]
required

Array of offer IDs to update.

fields
object[]
required

Array of field changes to apply.

Response

200 - application/json
result
boolean

Whether the bulk edit was successful.