Skip to main content
PATCH
/
networks
/
custom
/
caps
Bulk Update Custom Caps
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/custom/caps \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "network_custom_cap_setting_ids": [
    1,
    2,
    3
  ],
  "fields": [
    {
      "field_type": "daily_conversion_cap",
      "field_value": 150
    }
  ]
}
'
{
  "result": true
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_custom_cap_setting_ids
integer[]
required

List of custom cap setting IDs to update.

fields
object[]
required

Response

200 - application/json

OK

result
boolean