Skip to main content

Review Batch

Batch approve or reject multiple review items in a single request. Useful for clearing the review queue when items share similar characteristics.

POST/v1/review/batch

Response

Response fields

processedintegerNumber of records successfully actioned.
failedintegerNumber of records that could not be actioned.
resultsarrayPer-record outcome array.
results[].idstringReview record UUID.
results[].statusstringResulting status (approved, rejected) or "error" if the record was not found.
results[].errorstringError code if the record could not be actioned (e.g. not_found).

Response

{
  "processed": 2,
  "failed": 0,
  "results": [
    { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "status": "approved" },
    { "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901", "status": "approved" }
  ]
}

Errors

Error responses

401unauthorizedMissing or invalid API key.
429rate_limitedToo many requests. Retry after the period indicated in the Retry-After header.