Skip to main content
GET
/
creative-reviews
List creative review queue
curl --request GET \
  --url https://api.interchange.io/api/v2/storefront/creative-reviews \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "42",
      "storefrontId": "1234",
      "creativeId": "cr_abc123",
      "mediaBuyId": "<string>",
      "buyerCustomerId": 0,
      "submittedPayload": "<unknown>",
      "reviewedBy": "<string>",
      "reviewedAt": "2023-11-07T05:31:56Z",
      "reviewerNotes": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 4503599627370495
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key or access token

Query Parameters

status
enum<string>

Filter the queue by review status. Omit to return only pending rows (the operator queue default).

Available options:
pending,
approved,
rejected,
revoked

Response

List creative review queue

List response for the operator creative review queue endpoint.

items
object[]
required

Creative review rows, newest first. Default scope is status = pending; pass ?status= to filter.

total
integer
required

Number of rows in the current filtered view.

Required range: 0 <= x <= 9007199254740991