Skip to main content
GET
List Tasks

Authorizations

Authorization
string
header
required

OAuth 2.0 client credentials. The access token from POST /oauth/token is sent as a bearer token. Request only the scopes you need.

zivio-tenant-id
string
header
required

Your Zivio organisation identifier. The regional API endpoints serve every Zivio organisation, so each request must identify yours.

Query Parameters

page
integer
default:1

Page number for pagination

limit
integer
default:20

Number of results per page (max 100)

Required range: x <= 100
filter[<attribute>]
object

Filterable attributes:

integer (operators: eq, not_eq, in, not_in, gt, gte, lt, lte, between): completed_by_id, id, taskable_id datetime (operators: eq, not_eq, gt, gte, lt, lte, between): completed_at, created_at, updated_at string (operators: eq, not_eq, in, not_in, like, not_like): description, name, state (one of: active = pending and not dismissed by you (the default, and the UI's task list); all = every task ever assigned to you, whatever its status; completed = completed tasks; dismissed = tasks you have dismissed from your list), status (one of: pending = still to be actioned; completed = actioned, by any assignee or automatically when the underlying work was done; cancelled = no longer relevant (the underlying record moved on)), taskable_scope, taskable_type date (operators: eq, not_eq, gt, gte, lt, lte, between): due_on boolean (operators: eq): dismissed (one of: true = dismissed from your list (other assignees still see it); false = still on your list), overdue (one of: true = pending and past its due date; false = not overdue (due today or later, no due date, or no longer pending))

Note: like is a case-insensitive substring match — pass the bare term (filter[title][like]=redesign). Do not add % wildcards; they are not needed.

or[group]
object

OR condition groups. Filters within a group are ANDed; groups are ORed.

Syntax: or[group_key][<attribute>]=value or or[group_key][<attribute>][operator]=value

Examples:

  • Simple OR: or[1][state]=draft&or[2][state]=pending
  • Complex: or[1][state]=draft&or[1][budget][gte]=50000&or[2][state]=closed
  • With custom fields: or[1][cf][priority]=high&or[2][state]=pending

Group keys can be any string (1, 2, a, b, etc.) - they just need to be unique.

sort[<attribute>]
object

Sort results by attribute. Direction defaults to ascending.

Syntax: sort[<attribute>]= (ascending) or sort[<attribute>]=desc (descending)

Sortable attributes: completed_at, completed_by_id, created_at, description, dismissed, due_on, id, name, overdue, state, status, taskable_id, taskable_scope, taskable_type, updated_at

Examples:

  • Ascending: sort[created_at]= or sort[created_at]=asc
  • Descending: sort[created_at]=desc

Response

List of tasks

tasks
object[]