List Client Tracking History
GET/v1/reports/client-activity/:client_id
Returns the paginated tracking history (timeline) of events registered for the client, used to build the client onboarding/KYC timeline.
Request
Path Parameters
Unique identifier (UUID) of the client.
Query Parameters
Previous page state.
Page size.
Header Parameters
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
Responses
- 200
- 400
- 401
Client tracking history returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]required
Client tracking history data.
Tracking event ID.
Source event ID (from the originating system).
Event source system.
Event type.
Event status.
Reference ID.
Event creation date at the originating system.
Additional event metadata.
Has next page.
Page state.
{
"data": [
{
"id": "23bf3d55-b336-4ca2-be4b-4b8df3cdd94a",
"event_id": "inq_abc123",
"source": "persona",
"event_type": "GOVERNMENT_ID_VERIFICATION",
"status": "passed",
"reference_id": "ref_abc123",
"event_created_at": "2026-09-21T10:23:41.388Z",
"metadata": {}
}
],
"has_next_page": true,
"page_state": "string"
}
If any required params are missing or has invalid format or type.
User authentication failed.