List Activity Events
Retrieve a paginated list of activity events for your organization.
Events are returned in descending chronological order (most recent first).
Filter by event type, entityType, entityId, actorDid, subjectDid, or a dateFrom/dateTo range.
Paginate with pageIndex (zero-based, default 0) and pageSize (default 10, min 5, max 100); the response totalPages reflects the active filters.
dateTo requires dateFrom and must be on or after it; violating either returns 400 Bad Request.
Payload shape depends on the event type — each type carries its own set of fields, and may be null for events with no payload (e.g. REQUEST_CANCELED).
Headers
Pin request, response, and webhook shapes to a specific dated API version (YYYY-MM-DD). Omit to use the version pinned to your API key (set when the key is created; new keys default to the latest version). New integrations should target the latest version.
^\d{4}-\d{2}-\d{2}$"2026-07-06"
Query Parameters
Zero-based page index. 0 returns the first page.
0
Number of items per page
5 <= x <= 10010
Filter from date (will be converted to start of day in UTC)
"2025-01-01"
Filter to date (will be converted to end of day in UTC). Requires dateFrom.
"2025-12-31"
Filter by one or more activity event types. Repeat the query parameter to pass multiple values, e.g. ?type=VP_VERIFIED&type=VP_VERIFICATION_DENIED.
REQUEST_CREATED, REQUEST_CANCELED, VP_CREATED, VP_DENIED, VP_VERIFIED, VP_VERIFICATION_DENIED, USER_DECISION_ACCEPTED, USER_DECISION_REJECTED, MANDATE_ISSUED, MANDATE_REVOKED, KYC_ACCEPTED, KYC_REJECTED, APIKEY_VERSION_CHANGED, APIKEY_CREATED, APIKEY_SECRETS_ROTATED, APIKEY_REVOKED Filter by the broad entity class the event was emitted against (e.g. "credential", "request", "veriff", "apiKey").
"credential"
Filter by a specific entity id (must be a valid MongoDB ObjectId).
"507f1f77bcf86cd799439011"
Filter by the DID of the actor that triggered the event.
"did:web:humanos.tech:org:550e8400-e29b-41d4-a716-446655440000"
Filter by the DID of the subject affected by the event.
"did:web:humanos.tech:user:73ebefdd-a549-4873-aad9-def80c40c8c8"
Response
Returns a page of activity events plus the total number of pages available for the current filters.