Review Queue (Enterprise)
Get a queue
Account
Content moderation
Actions
Wordlist (Enterprise)
Authors (Enterprise)
Review Queue (Enterprise)
Get a queue
Get a queue
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The queue ID
Response
200
application/json
Successful response
Available options:
FLAGGED
, NOT_FLAGGED
, THRESHOLDS
Required range:
0 <= x <= 100
Required range:
0 <= x <= 100
Was this page helpful?
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
}
}