Skip to main content
POST
/
v1
/
tasks
/
list
List Tasks
curl --request POST \
  --url https://api.example.com/v1/tasks/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": [
    {
      "condition": "contains",
      "field": "name",
      "value": "Acme"
    },
    {
      "condition": "is",
      "field": "status",
      "value": "active"
    }
  ],
  "page": 1,
  "page_size": 50,
  "sort": "-created_at"
}
'
{
  "data": [
    {
      "id": "tsk_abc123",
      "account_id": "acc_def456",
      "opportunity_id": "opp_ghi789",
      "title": "Send follow-up proposal",
      "description": "Send the updated pricing proposal to the procurement team",
      "task_type": "General Action Item",
      "assignee": {
        "id": "usr_abc123",
        "first_name": "Jane",
        "last_name": "Smith"
      },
      "status": "To Do",
      "due_at": "2025-07-01T17:00:00Z",
      "created_at": "2025-06-15T10:30:00Z",
      "updated_at": "2025-06-16T10:30:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 50,
    "total_count": 58,
    "total_pages": 2
  },
  "meta": {
    "timestamp": "2026-04-21T12:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.monaco.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
filters
FilterRule · object
page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
Example:

1

page_size
integer
default:50

Number of results per page

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

25

sort
string
default:-created_at

Field to sort by. Prefix with '-' for descending order.

Example:

"-created_at"

Response

Successful Response

data
TaskResponse · object[]
required
pagination
PaginationInfo · object
required
meta
ResponseMeta · object