/clients/{clientId}/activitiesList activities for a clientReturns the client's activities (emails, meetings, notes, chats) ordered by most-recent first.
Pagination. Offset-based: cursor is the integer offset of the next page encoded as a decimal string (e.g. "20"). This differs from /clients, whose cursor is a base64-encoded UUID — the two endpoints paginate differently and their cursors are not interchangeable.
Filters. type, source, from, to, and includeArchived are all applied server-side. from/to bound the activity's occurredAt (inclusive) and accept an ISO-8601 date (2026-01-01) or an RFC 3339 datetime. Archived activities are hidden unless includeArchived=true. Unknown enum values, unparseable dates, or a non-boolean includeArchived return 400 invalid_argument.
List responses omit content for cost reasons — fetch the single-resource endpoint to get message bodies.
Parameters
limitintegerquerycursorstringqueryDecimal-string offset of the next page (from a prior response's `meta.cursor`).
typestringquerysourcestringqueryfromstringqueryOnly activities whose `occurredAt` is on/after this instant. ISO-8601 date or RFC 3339 datetime.
tostringqueryOnly activities whose `occurredAt` is on/before this instant. ISO-8601 date or RFC 3339 datetime.
includeArchivedbooleanqueryWhen true, archived activities are included. Defaults to false.
clientIdstring · uuidpathrequiredClient UUID.
Responses
Headers
X-RateLimit-LimitThe request cap for the tighter of the per-organization / per-endpoint windows that applied to this request.
X-RateLimit-RemainingRequests remaining in the current window.
X-RateLimit-ResetUnix timestamp (seconds) when the current window resets.
allOf · 2 options
datavaluerequiredThe response payload — shape depends on the endpoint.
metaobjectrequiredPagination metadata — populated on list endpoints, empty on single-resource endpoints.
Show child attributes
cursornull | stringOpaque cursor to pass to the next request.
hasMoreboolean | nullTrue when further pages of results are available.
dataarray of objectShow child attributes
Show array items
A communication event linked to a client. Projected from Salfio's Conversation + messages + conversation_clients model family. The `clientId` is the "primary" client derived from the junction table — a conversation linked to multiple clients is surfaced once per linked client (from the list endpoints of each). `content` is the full concatenated body of all messages on the conversation, joined by `\n\n---\n\n` — single-resource GETs never truncate it. It is returned only on single-resource GETs; list endpoints omit it for response-size reasons. Webhook delivery payloads cap `content` at 10 KiB (with a `[content truncated at 10 KiB]` marker) — fetch the activity by ID when you need the full text. `immutable` is derived server-side: non-`manual` sources are always immutable on the v1 surface (per the spec source/operation matrix).
archivedAtnull | string · date-timeclientIdstring · uuidrequiredcontentstringrequiredFull concatenated message bodies (single-resource GETs only; capped at 10 KiB in webhook deliveries).
createdAtstring · date-timerequiredidstring · uuidrequiredimmutablebooleanrequiredTrue when the activity's source prevents it from being edited or hard-deleted via the API.
occurredAtstring · date-timerequiredparticipantsarray of string · emailrequiredShow child attributes
sourcestringrequiredsubjectnull | stringtypestringrequiredupdatedAtstring · date-timerequired{
"data": [
{
"archivedAt": "2026-06-09T00:00:00Z",
"clientId": "00000000-0000-0000-0000-000000000000",
"content": "string",
"createdAt": "2026-06-09T00:00:00Z",
"id": "00000000-0000-0000-0000-000000000000",
"immutable": true,
"occurredAt": "2026-06-09T00:00:00Z",
"participants": [
"user@example.com"
],
"source": "fireflies",
"subject": "string",
"type": "chat",
"updatedAt": "2026-06-09T00:00:00Z"
}
],
"meta": {
"cursor": "string",
"hasMore": true
}
}errorobjectrequiredShow child attributes
codestringrequiredMachine-readable error category.
detailsobjectOptional per-code context (field names, retry windows, …).
messagestringrequiredHuman-readable description — intended for operator logs, not end-user display.
{
"error": {
"code": "invalid_argument",
"message": "limit must be an integer between 1 and 100"
}
}errorobjectrequiredShow child attributes
codestringrequiredMachine-readable error category.
detailsobjectOptional per-code context (field names, retry windows, …).
messagestringrequiredHuman-readable description — intended for operator logs, not end-user display.
{
"error": {
"code": "unauthorized",
"message": "Authentication required"
}
}errorobjectrequiredShow child attributes
codestringrequiredMachine-readable error category.
detailsobjectOptional per-code context (field names, retry windows, …).
messagestringrequiredHuman-readable description — intended for operator logs, not end-user display.
{
"error": {
"code": "not_found",
"message": "client not found"
}
}Headers
Retry-AfterSeconds the client should wait before retrying.
errorobjectrequiredShow child attributes
codestringrequiredMachine-readable error category.
detailsobjectOptional per-code context (field names, retry windows, …).
messagestringrequiredHuman-readable description — intended for operator logs, not end-user display.
{
"error": {
"code": "rate_limited",
"details": {
"retry_after_seconds": 30
},
"message": "Rate limit exceeded"
}
}