View an item event

Fetch an event for the specified item.

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

Example

cURL
123curl https://api.jsonpad.io/lists/47232ba6-beaa-4df9-a196-367ffda342ab/items/96c04cc3-64dc-413a-866b-17df26d50a78/events/fe196224-f6f0-4522-bd66-ee5db2f865f3 \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    itemIdstringAn item id or alias.
  • required
    eventIdstringAn event id.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK
{
id: "026f4ea0-fc37-4395-a5c3-1c7ff65f4283"
createdAt: "2026-09-05T11:30:03.622Z"
updatedAt: "2026-09-05T11:30:03.622Z"
user: {
id: "03200f42-c3ae-468d-b46c-1a7d3c23e8c4"
createdAt: "2026-09-05T11:30:03.622Z"
updatedAt: "2026-09-05T11:30:03.622Z"
lastActiveAt: "2026-09-05T11:30:03.622Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "bfdecabc-e661-471a-a2c5-ba09cff895c6"
stream: "item"
type: "item-created"
version: null
snapshot: {
id: "bfdecabc-e661-471a-a2c5-ba09cff895c6"
data: {
test: 123
}
type: "item"
listId: "8d70b314-f9c2-4618-81c5-9afb8cc3bbe4"
locked: false
version: "1"
dataSize: 10
readonly: false
activated: true
createdAt: "2026-09-05T11:30:03.622Z"
updatedAt: "2026-09-05T11:30:03.622Z"
description: "This is a sample item"
}
attachments: {
data: {
data: {
test: 123
}
list: "sample-list"
version: "1"
readonly: false
activated: true
description: "This is a sample item"
}
}
}

Response headers

No response headers

2024-10-29