GET
/
image
/
task
/
status
/
{taskId}
Check task status
curl --request GET \
  --url https://whilter-api-host/image/task/status/{taskId} \
  --header 'Authorization: Bearer <token>'
{
  "task-id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "COMPLETED",
  "file-path": "<string>",
  "total-count": 100000,
  "processed": 100000,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

taskId
string<uuid>
required

The unique identifier of the task to check

Response

200 - application/json

Task status retrieved successfully

The response is of type object.