GET
/
queues
/
{queueId}
/
items
/
{itemId}
curl --request GET \
  --url https://api.contentmod.io/queues/{queueId}/items/{itemId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "text",
  "accepted": true,
  "status": "pending",
  "content": "<string>",
  "moderation": "<any>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Minimum length: 3
Example:

"27fbdc0b-b295-46ce-93f5-81b2fc08a381"

Response

200
application/json
Fetch a queue item by its ID
id
string
required
type
enum<string>
required
Available options:
text,
image
accepted
boolean
required
status
enum<string>
required
Available options:
pending,
accepted,
rejected,
error
content
string
required
moderation
any | null