Skip to main content
PATCH
/
networks
/
reporting
/
onhold
Update On-Hold Conversion Status
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/reporting/onhold \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "on_hold_conversion_ids": [
    "baab7e25bba046e6b080c799729c5cba",
    "a91a421038ab46b694547f4db636db80"
  ],
  "status": "approved"
}
'
{
  "result": true
}
Approve or reject on-hold conversions. Provide an array of conversion IDs and the target status to update them in bulk.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
on_hold_conversion_ids
string[]
required

Array of on-hold conversion IDs to update.

status
enum<string>
required

Target status for the conversions.

Available options:
approved,
rejected

Response

200 - application/json
result
boolean

Whether the update was successful.