v1
latestOpenAPI 3.0.22026-08-045831103.6 KBList activities
Retrieve a paginated list of deal activities, filterable by type, activity status, deal status, origin, stage, assigned user, deal, free text, tags, and a date range. Requires the ACTIVITIES_API feature flag and an API key with the activities:read scope.
Consistency note: listing is served from the search index and is eventually consistent (typically seconds behind writes). GET /v2/activities/:id reads from the primary database and is always fresh — poll that endpoint instead of the list if you need to confirm a just-written change.
Query parameters
Comma-separated list of activity types to filter by (CALL, MAIL, SCHEDULE, TASK, MEETING, WHATSAPP, INSTAGRAM).
Comma-separated list of activity statuses to filter by (DELAYED, ON_TIME, COMPLETE, IGNORED).
Comma-separated list of deal statuses to filter by (OPEN, WON, LOST).
Comma-separated list of origin UUIDs to filter by.
Comma-separated list of stage UUIDs to filter by.
Filter by the deal's assigned user (single UUID).
Filter by a single deal UUID.
Free-text search across the activity title and content.
Comma-separated list of tag UUIDs. An activity matches when its deal has any of these tags.
Comma-separated list of tag UUIDs to exclude. An activity is excluded when its deal has any of these tags.
Which date field date_start/date_end filter against. due (default) is the activity's due date, created is when the activity was created, won/lost are the deal's won_at/lost_at.
Inclusive start of the date range (ISO 8601), applied to the field selected by date_type.
Inclusive end of the date range (ISO 8601), applied to the field selected by date_type.
Max number of rows returned
Select the page of the result
Headers
API Token
Response
A paginated list of activities
Example response
{
"status": 200,
"total_count": 50,
"page": 1,
"total_pages": 10,
"has_next": true,
"data": [
{
"id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"title": "Call the customer back",
"type": "CALL",
"content": "Discuss the renewal proposal.",
"due_at": "2024-01-20T14:00:00.000Z",
"custom": true,
"stage_id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"created_at": "2020-01-01T14:15:00.000000+00:00",
"deal": {
"id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"status": "OPEN",
"origin_id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"stage_id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"contact": {
"id": "8feade82-d77b-4e8b-9d35-fd43e972b5c8",
"name": "Jane Doe"
}
}
}
]
}