v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Tasks

Query tasks

Query tasks for the authenticated user with pagination and filtering support

post/v6/tasks/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "tsk_123456789",
      "name": "Transaction Review Required",
      "description": "You have 5 transactions that require review",
      "shortDescription": "Stay up-to-date on 5 transactions",
      "priority": "HIGH",
      "type": "TRANSACTION_REVIEW",
      "dismissable": "true",
      "status": "ACTIVE"
    }
  ]
}