GET
/
queue
/
{id}
curl --request GET \
  --url https://moderationapi.com/api/v1/queue/{id} \
  --header 'Authorization: Bearer <token>'
{
  "queue": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "filter": {
      "contextIDs": [
        "<string>"
      ],
      "filterLabels": [
        {
          "label": "<string>",
          "type": "FLAGGED",
          "minThreshold": 50,
          "maxThreshold": 50
        }
      ],
      "labels": [
        "<string>"
      ],
      "afterDate": "<string>",
      "beforeDate": "<string>",
      "showChecked": true,
      "authorID": "<string>",
      "filteredActionIDs": [
        "<string>"
      ]
    },
    "unresolvedItemsCount": 123,
    "resolvedItemsCount": 123,
    "totalItemsCount": 123
  }
}

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

Response

200
application/json
Successful response
queue
object
required

Was this page helpful?