View an item event

Fetch an event for the specified item.

Events can also be fetched for an item that has been deleted, as long as the item is referenced by its id.

GET https://api.jsonpad.io/lists/{listId}/items/{itemId}/events/{eventId}

Example

cURL
12curl https://api.jsonpad.io/lists/f7c68a5a-9b17-4535-876f-f2cf601d2c57/items/9a6d0888-fb0f-4762-a0d7-e83cbda47e13/events/9093cfe3-67c1-4685-8b69-fa7b83c81fcb \ -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    itemIdstringAn item id or alias.
  • required
    eventIdstringAn event id.
  • optional
    includeSnapshotbooleanhttps://api.jsonpad.io/lists/a56538d3-c2fe-4808-9e8c-cd0f53d600cd/items/6711cc70-a458-458b-9323-fd41f44b3c6d/events/94038022-b02c-49ff-bb9c-fcb72e0c89b9?includeSnapshot=trueInclude the event's snapshot in the response. Defaults to false.
  • optional
    includeAttachmentsbooleanhttps://api.jsonpad.io/lists/96398cbc-996f-4614-ad21-a1a28696dc5e/items/ed1e9a73-e2d2-4b58-b146-0980f671a426/events/16583d4b-eea7-47cb-a5df-0f631e6062a1?includeAttachments=trueInclude the event's attachments in the response. Defaults to false.
  • optional
    includeGuardedboolean?includeGuarded=true

    Include values hidden by guard indexes in the response. Can be true or false.

    This only applies when the request is authenticated as an identity, and only to the items that identity owns. Without an identity, guarded values stay hidden.

    Defaults to false.

Request headers

  • required
    x-api-tokenstringYour API token.
  • optional
    x-identity-tokenstringAn identity token.
  • optional
    x-identity-groupstringAn identity group.

Request body

No request body

Response body

200 OK
{
id: "dc6502ab-0b64-402f-8dd8-6735b50fd675"
createdAt: "2026-09-23T21:08:22.151Z"
updatedAt: "2026-09-23T21:08:22.151Z"
user: {
id: "56339f3f-c14f-4f81-acef-619cc3a28538"
createdAt: "2026-09-23T21:08:22.151Z"
updatedAt: "2026-09-23T21:08:22.151Z"
lastActiveAt: "2026-09-23T21:08:22.151Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "375169fc-a2cd-403e-8f5b-2786aa957bae"
stream: "item"
type: "item-created"
version: null
}

Response headers

No response headers

2026-09-12