Motion Logo Motion API Documentation
Support
API Keys

List Tasks

Get all tasks for a given query

GET v1 / tasks

Authorization

Authorization string required

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

Query Parameters

assigneeId string

Limit tasks returned to a specific assignee

cursor string

Use if a previous request returned a cursor. Will page through results

includeAllStatuses boolean

Limit tasks returned by statuses that exist on tasks, cannot specify this ('includeAllStatuses') AND status in the same request

label string

Limit tasks returned by label on the task

name string

Limit tasks returned to those that contain this string. Case in-sensitive

projectId string

Limit tasks returned to a given project

status array<string>

Limit tasks returned by statuses that exist on tasks, cannot specify this ('status') AND includeAllStatuses in the same request

workspaceId string

The id of the workspace you want tasks from. If not provided, will return tasks from all workspaces the user is a member of.

Response

200 - application/json - object

meta object required

Contains the nextCursor, if one exists, along with the pageSize

tasks array<object> required

The tasks returned

Was this page helpful?