Skip to main content
POST
/
v1
/
review-queue
/
{item_id}
/
dismiss
Dismiss Review Queue Item
curl --request POST \
  --url https://api.example.com/v1/review-queue/{item_id}/dismiss \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "ctx": {},
      "input": "<unknown>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

item_id
string
required

Body

application/json
reason
string
required
Minimum string length: 1

Response

Successful Response