curl --request POST \
--url https://api.monaco.com/v1/tasks/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "title",
"condition": "contains",
"value": "Follow up"
}
]
}
'{
"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"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Tasks
List Tasks
Returns a paginated list of tasks.
POST
/
v1
/
tasks
/
list
curl --request POST \
--url https://api.monaco.com/v1/tasks/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "title",
"condition": "contains",
"value": "Follow up"
}
]
}
'{
"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"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Body
application/json
- FilterRule · object[]
- FilterExpression · object
Show child attributes
Show child attributes
Page number (1-indexed)
Required range:
x >= 1Example:
1
Number of results per page
Required range:
1 <= x <= 500Example:
25
Field to sort by. Prefix with '-' for descending order.
Example:
"-created_at"