GET
/
api
/
v1
/
ingestion-queue
/
status
Get Ingestion Queue Status
curl --request GET \
  --url {protocol}://{domain}/api/v1/ingestion-queue/status \
  --header 'Authorization: Bearer <token>'
{
  "pending": 123,
  "processing": 123,
  "completed": 123,
  "failed": 123,
  "totalCapacity": 123
}

Authorizations

Authorization
string
header
required

Bearer token authentication supports:

  • Personal API tokens (PATs)
  • OAuth2 access tokens
  • JWT tokens

Example: Authorization: Bearer your_token_here

Response

200 - application/json

Queue status information

The response is of type object.