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
}Offers
Apply Offer Bulk Edit
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
}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
The Everflow API key generated from the Control Center > Security.
Body
application/json
Response
200 - application/json
Whether the bulk edit was successful.
Was this page helpful?
