/clients/{clientId}/cardsList a client's cardsReturns the AI-generated cards (briefing, wins/traction, risks/frictions, topics) for the client, in the display order configured in the organization's card settings. Filtered to configs where both is_active and is_displayed are true; the column-only configs that surface on the clients-overview list are intentionally excluded here.
Stale handling. When at least one card is stale, that card is returned with is_stale=true AND a regeneration is enqueued for the worker to pick up on its next tick. The read path is purely lazy — no synchronous LLM call is ever made on a partner request. Re-call the endpoint after a short delay to observe the refreshed value (is_stale=false, new last_update).
Cross-tenant lookups and missing clients both return 404 not_found so existence is never leaked.
Parameters
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
One AI-generated card for a client. Each card is the result of running an organization-level prompt against the client's recent activities — the prompt and display position are configured by the organization's admins, the value is computed and refreshed by the Salfio worker. `value` is `null` until the worker has produced the first rendered output (the dashboard renders this as a "generating…" state). `is_stale=true` means the underlying activities have changed since the value was last computed — the value shown is the previous one and a refresh is in flight. Polling will pick up the new value once the worker finishes; reading this endpoint also nudges the worker to prioritise the refresh. `last_update` is the wall-clock time the value was last written by the worker; `null` when no value has been produced yet.
card_config_idstring · uuidrequiredID of the parent card configuration this value was computed for. Shared across every client in the organization.
card_value_idstring · uuidrequiredID of this client's instance of the card — the thing that holds `value`. Unlike `card_config_id`, which is shared by every client using the same card definition, this is unique per client and per card. Pass it to `POST /cards/{cardValueId}/feedback` to report an issue with what you read here.
display_orderintegerrequiredPosition the card occupies in the ordered list (lower values first). The base value is implementation-defined; rely on the relative ordering, not the absolute number.
identifierstringrequiredStable, machine-readable identifier of the card (e.g. `briefing`, `wins_traction`).
is_stalebooleanrequiredTrue when the underlying activities have changed since `value` was last written. A refresh is enqueued automatically on read.
last_updatenull | string · date-timeTime the worker last wrote `value`. `null` when no value has been produced yet.
titlestringrequiredHuman-readable title configured for this card.
valuenull | stringRendered Markdown value of the card. `null` until the worker has produced output.
{
"data": [
{
"card_config_id": "00000000-0000-0000-0000-000000000000",
"card_value_id": "00000000-0000-0000-0000-000000000000",
"display_order": 1,
"identifier": "briefing",
"is_stale": true,
"last_update": "2026-06-09T00:00:00Z",
"title": "Briefing",
"value": "string"
}
],
"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"
}
}