List tasks
GET /v1/tasks
GET
/v1/tasks
Cursor-paginated CRM tasks. Requires scope tasks:read.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” after
integer
limit
integer
status
string
priority
string
overdue
boolean
contactId
integer
dealId
integer
Responses
Section titled “ Responses ”Paginated task list.
object
items
Array<object>
object
id
integer
title
string
description
string
contactId
integer
contactName
string
dealId
integer
dealTitle
string
priority
string
status
string
dueAt
string format: date-time
completedAt
string format: date-time
isOverdue
boolean
createdAt
string format: date-time
updatedAt
string format: date-time
nextCursor
integer
hasMore
boolean
Missing or invalid bearer token.
Standard error envelope for all v1 error responses.
object
error
Machine-readable error code.
string
message
Human-readable explanation of the error.
string
details
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "unauthorized", "message": "Invalid bearer principal"}The API key does not have the required scope for this operation.
Standard error envelope for all v1 error responses.
object
error
Machine-readable error code.
string
message
Human-readable explanation of the error.
string
details
Optional structured context (field-level validation errors, etc.).
Example
{ "error": "forbidden", "message": "scope contacts:write is required"}