Skip to main content
POST
/
networks
/
offers
/
patch
/
submit
Submit Offer Patch
curl --request POST \
  --url https://api.eflow.team/v1/networks/offers/patch/submit \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "offer_ids": [
    123
  ],
  "changes": {}
}
'
{
  "result": true
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
offer_ids
integer[]

Array of offer IDs to update.

changes
object

Fields and values to apply.

Response

200 - application/json

OK

result
boolean

Whether the submission was accepted.