View identity event

Fetch an event for the specified identity. Any event from the identity's event list can be fetched this way.

GET https://api.jsonpad.io/identities/{identityId}/events/{eventId}

Example

cURL
12curl https://api.jsonpad.io/identities/1b8b83ad-9e7e-458f-a84e-408968c18167/events/fa7df083-f2fd-4bd4-a314-393a196c87b2 \ -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    identityIdstringA identity id.
  • required
    eventIdstringAn event id.
  • optional
    includeSnapshotbooleanhttps://api.jsonpad.io/identities/0daa158d-1541-4d06-ab87-9d4e1f2f5c81/events/cfab5ab7-5744-413c-9540-f1a3f32b920b?includeSnapshot=trueInclude the event's snapshot in the response. Defaults to false.
  • optional
    includeAttachmentsbooleanhttps://api.jsonpad.io/identities/9fc578bd-0101-4dae-aee5-932aa46a415c/events/e09fa320-7bc0-419c-9e7f-4e7368f34ac4?includeAttachments=trueInclude the event's attachments in the response. Defaults to false.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK
{
id: "f373c25e-9ef1-4b3b-88bb-2332fa82d52e"
createdAt: "2026-09-23T21:08:44.883Z"
updatedAt: "2026-09-23T21:08:44.883Z"
user: {
id: "dc53eefd-8e10-4f44-a2ea-2a1fa44d8282"
createdAt: "2026-09-23T21:08:44.883Z"
updatedAt: "2026-09-23T21:08:44.883Z"
lastActiveAt: "2026-09-23T21:08:44.883Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "c60027d4-b081-4fba-8731-4ba4f092358b"
stream: "identity"
type: "identity-created"
version: null
}

Response headers

No response headers

2026-09-17