Skip to main content
GET
List Activities By Account
Lists activities for one account. Pass unlinked_only=true to only return activities that don’t already have a deal_id — useful for finding account activities that haven’t yet been attached to any deal. Rows are a narrower projection than the other list endpoints — no embeds, no metadata/completed_at/source/direction. Returns a bare JSON array — no total-count header, no pagination envelope. limit is capped at 500 server-side regardless of what you pass.

Auth

Requires a CRM read scope and an active organization on the token. Any of contacts:read, deals:read, companies:read, or activities:read qualifies, as does any *:manage scope — manage implies read.

Response

Array of activity objects, ordered by created_at descending:

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

The account whose activities to list.

Query Parameters

unlinked_only
boolean
default:false

If true, only return activities with no deal_id — orphan account activities available to attach to a deal.

limit
integer
default:100

Maximum rows to return; capped at 500 server-side.

Response

Successful Response