Skip to main content
PATCH
/
networks
/
reporting
/
conversions
Update Conversion Status
curl --request PATCH \
  --url https://api.eflow.team/v1/networks/reporting/conversions \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "conversion_ids": [
    "9c0534c99eb34b57bda16f92b6d5d3d4",
    "307971a211b74db98c3c11d5e83c082a",
    "5759e555b03845279bcdb9c2d0391b9e"
  ],
  "conversion_status": "rejected"
}
'
{
  "result": true
}
Modify the status of one or more conversions. Accepts an array of conversion IDs and the target status (approved or rejected).

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
conversion_ids
string[] | null
required

IDs of the conversions to update.

conversion_status
enum<string>
required

Target status for the conversions.

Available options:
approved,
rejected

Response

200 - application/json
result
boolean