Skip to main content
POST
/
networks
/
supplements
/
revert
Revert Data Supplements
curl --request POST \
  --url https://api.eflow.team/v1/networks/supplements/revert \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "data_supplement_ids": [
    12345,
    12346,
    12347
  ]
}
'
{
  "result": true
}
Reverts (deletes) one or more data supplement records by their IDs. This removes the supplement data from your reporting. Use this when supplement data was incorrectly imported or is no longer needed. Returns true on success.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
data_supplement_ids
integer[]
required

Array of data supplement IDs to revert.

Response

200 - application/json
result
boolean

Whether the revert was successful.