POST
/
queue
/
{id}
/
items
/
{itemId}
/
unresolve
curl --request POST \
  --url https://moderationapi.com/api/v1/queue/{id}/items/{itemId}/unresolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "comment": "<string>"
}'
{
  "success": true,
  "status": "<string>",
  "unresolvedAt": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The queue ID

itemId
string
required

The item ID to unresolve

Body

application/json
comment
string

Optional reason for unresolving the item

Response

200
application/json
Successful response
success
boolean
required
status
string
required

New status of the item

unresolvedAt
string
required

Timestamp when the item was unresolved

Was this page helpful?