POST
/
v1
/
report
/
bulk-status-update
Update report statuses
curl --request POST \
  --url https://staging.api.us.aptlydone.com/v1/report/bulk-status-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "reportIds": [
    "e92a5b7a-b620-4fc0-a9c5-7f6fcfe2267f",
    "de514c78-5806-49b0-b72f-4e2cd329d76d"
  ],
  "status": "PUBLISHED",
  "operation": "UPDATE"
}'
{
  "statusCode": 200,
  "timestamp": "2025-06-24T08:51:31.061Z",
  "message": "Success",
  "data": {
    "success": true,
    "updatedCount": 5,
    "failedIds": [
      "7ac923ae-3adf-4617-9ecd-9544afd332f2",
      "6e16cd65-ac58-480d-8af7-b33ddcc9e9f4"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

201 - application/json

Report statuses updated successfully

The response is of type object.