All Tasks

Tasks are longer running operations where a response cannot be returned in an appropriate time. This endpoint retrieves a listing of all incomplete tasks that are still in queue or processing.

SecurityOAuth2
Request
query Parameters
status
string [ 5 .. 24 ] characters

The task status as a value to apply as a filter. For example, status=processing, when you only want to return tasks where the status is "processing". Query parameters are always case insensitive.

Enum: "queued" "processing" "completed"
Example: status=processing
header Parameters
content-type
string
Example: application/json
Authorization
string
Example: Bearer <token>
Responses
200

Successful Request. Tasks Retrieved Successfully.

400

One or more required parameters are missing or invalid.

401

Authentication failed (unauthorized).

403

Forbidden. You do not have permissions to perform this action, or your connection information is not correct.

503

The server is too busy to handle the request.

get/tasks
Request samples
Response samples
application/json
{
  • "tasks": [
    ],
  • "pagination": {
    }
}