Skip to main content
POST
/
jobs
/
status
Check job processing status
curl --request POST \
  --url https://api-service.fribl.co/api/v1/jobs/status \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "message": "<string>",
  "length": 123,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "PENDING"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

API key in UUID format. Include this header with every authenticated request.

Body

application/json

Request body for checking processing status.

ids
string<uuid>[]
required

List of document identifiers to check status for.

Response

Status of the requested jobs.

message
string
required
length
integer
required

Number of status items returned.

data
object[]
required