Skip to main content
GET
List tasks

Authorizations

Authorization
string
header
required

API key authentication via Bearer token

Query Parameters

limit
number
default:10

Maximum number of items to return (1-100)

Required range: 1 <= x <= 100
Example:

10

offset
number | null
default:0

Number of items to skip

Required range: x >= 0
Example:

0

sortOrder
enum<string>
default:desc

Sort order by creation date

Available options:
asc,
desc
Example:

"desc"

status
enum<string>

Filter by task status

Available options:
backlog,
todo,
in_progress,
in_review,
done,
cancelled
Example:

"todo"

category
enum<string>

Filter by task category

Available options:
bug_fix,
documentation,
feature_request,
meeting,
other,
planning,
research,
review
Example:

"bug_fix"

urgency
enum<string>

Filter by urgency level

Available options:
low,
medium,
high
Example:

"high"

importance
enum<string>

Filter by importance level

Available options:
low,
medium,
high
Example:

"high"

assigneeId
string<uuid>

Filter by assigned user ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

contactId
string<uuid>

Filter by linked contact ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

messageId
string<uuid>

Filter by linked message ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

dueBefore
string<date-time>

Filter tasks due before this date (ISO 8601)

Example:

"2024-12-31T23:59:59Z"

dueAfter
string<date-time>

Filter tasks due after this date (ISO 8601)

Example:

"2024-01-01T00:00:00Z"

Response

List of tasks with pagination metadata

data
object[]
required
meta
object
Last modified on August 9, 2026