View identity event

Fetch an event for the specified identity.

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

Example

cURL
123curl https://api.jsonpad.io/identities/bf0891a9-082b-4084-8c9f-4e253a0c29fb/events/ceedf0ef-9bf2-42f4-8ad2-d5bd9122d420 \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    identityIdstringA identity id.
  • required
    eventIdstringAn event id.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK
{
id: "30f1a4c8-899d-452e-9bca-b6fdeb80c35c"
createdAt: "2026-09-05T11:30:34.323Z"
updatedAt: "2026-09-05T11:30:34.323Z"
user: {
id: "8cf06f08-35c6-4ff9-a91c-f29b116f2bb7"
createdAt: "2026-09-05T11:30:34.323Z"
updatedAt: "2026-09-05T11:30:34.323Z"
lastActiveAt: "2026-09-05T11:30:34.323Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "e1002885-bbeb-45f2-b3fa-c4e8779d3e82"
stream: "identity"
type: "identity-created"
version: null
snapshot: {
id: "e1002885-bbeb-45f2-b3fa-c4e8779d3e82"
name: "Sample Identity"
group: "sample-group"
type: "identity"
locked: false
pinned: false
userId: "a4d398e2-ce6a-4fcb-9b29-690d145d81a2"
activated: true
}
attachments: {
data: {
name: "Sample Identity"
activated: true
}
}
}

Response headers

No response headers

2024-12-12