Skip to main content
POST
/
api
/
v2
/
network
/
reports
/
conversions
/
change-status
Bulk change conversion status
curl --request POST \
  --url 'https://{domain}/api/v2/network/reports/conversions/change-status?api-key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "new_status": 2,
  "fire_postbacks": 0,
  "notes": "Manual review — status updated.",
  "filters": {
    "transactions": [
      "7c92b1e3-2fa4-4b7d-9e0a-1c3f7d2b4e8c",
      "1a8b3d52-4f29-4a7c-8b1d-5e9f2c4a6b8d"
    ]
  }
}
'
{
  "status": "success",
  "code": 200,
  "name": "OK",
  "message": "<string>",
  "info": {
    "result": {
      "response": "<string>",
      "affected": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.scaleo.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
query
required

API key passed as query parameter. User must have api_status enabled.

Body

application/json
new_status
required

Target conversion status. Accepts either numeric status ID or status name.

filters
object
required
fire_postbacks

Whether to fire affiliate postbacks.

Available options:
0,
1
notes
string | null

Optional public note applied to every updated conversion. Empty string is ignored.

Response

Status change result.

status
string
Example:

"success"

code
integer
Example:

200

name
string
Example:

"OK"

message
string
info
object