Get tasks

GET
/api/v1/tasks

Get a paginated, filtered, and sorted list of tasks. Supports pagination, search filtering, and sorting by multiple fields.

Authorization

auth ApiKey
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

In: header

X-API-KEY<token>

Internal API key for admin endpoints. Example: "X-API-KEY: {key}"

In: header

Query Parameters

sort_by?string

Sort by field name (optional). Supported fields: "name", "description", "testmode", "project", "owner", "enabled", "scheduled"

name?string

Task name used for filtering. Optional filter operators can be applied to refine the search:

  • equal (default)
  • contains
  • startswith
  • endswith
description?string

Task description used for filtering. Optional filter operators can be applied to refine the search:

  • equal (default)
  • contains
  • startswith
  • endswith
project_id?string

Filter by project ID

Formatuuid
is_active?boolean

Filter by active status

page?integer

Page number (1-based). Default is 1.

Formatint32
Range1 <= value <= 2147483647
page_size?integer

Number of items per page. Default is 10. Maximum is 50.

Formatint32
Range1 <= value <= 50
sort_direction?string

Sort direction: "asc" or "desc". Default is "asc" (optional)

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/tasks"
{  "isSuccess": true,  "error": {},  "errorDetails": "string",  "message": "string",  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "description": "string",      "project": {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "name": "string",        "isGlobalPermissions": true      },      "isActive": true,      "sendNotifications": true,      "notifyIfError": true,      "notifyIfWarning": true,      "notifyIfSuccess": true,      "notificationRecipients": "string",      "notificationCc": "string",      "notificationBcc": "string",      "testMode": true,      "testModeRecipients": "string",      "isScheduled": true,      "lastExecution": "2019-08-24T14:15:22Z",      "owner": "534359f7-5407-4b19-ba92-c71c370022a5",      "ownerName": "string",      "isMine": true,      "canEdit": true,      "canDuplicate": true,      "canDelete": true,      "canRun": true,      "canSetPermissions": true    }  ],  "resultInfo": {    "page": 0,    "perPage": 0,    "totalCount": 0,    "totalPages": 0,    "hasPreviousPage": true,    "hasNextPage": true  }}