Skip to main content
PATCH
/
networks
/
reporting
/
onhold
/
conversions
Update On-Hold Conversion Status
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/reporting/onhold/conversions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "conversion_ids": [
    123
  ],
  "status": "approved"
}
'
{
  "result": true
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
conversion_ids
integer[]
required

Array of conversion IDs to update.

status
enum<string>
required

Target status for the conversions.

Available options:
approved,
rejected

Response

200 - application/json

OK

result
boolean

Whether the update was successful.