View list event

Fetch an event for the specified list.

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

Example

cURL
123curl https://api.jsonpad.io/lists/3ea56502-51b0-40f1-aaa2-b4fdc1cce063/events/d273c1f0-1d7b-4e90-932b-029f72d66a42 \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    eventIdstringAn event id.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK
{
id: "3b0dc29f-9946-41ec-826d-397441b1dbc6"
createdAt: "2026-09-05T11:29:46.897Z"
updatedAt: "2026-09-05T11:29:46.897Z"
user: {
id: "f98b71d2-2cae-4f86-9b03-288b39acaf44"
createdAt: "2026-09-05T11:29:46.897Z"
updatedAt: "2026-09-05T11:29:46.897Z"
lastActiveAt: "2026-09-05T11:29:46.897Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "a9c9c653-1854-4562-8c09-c6fe4c9df3ca"
stream: "list"
type: "list-created"
version: null
snapshot: {
id: "a9c9c653-1854-4562-8c09-c6fe4c9df3ca"
name: "Sample List"
type: "list"
locked: false
pinned: false
schema: {
type: "object"
}
userId: "3e34948e-7f79-4924-93e2-1d059660fe89"
pathName: "sample-list"
createdAt: "2026-09-05T11:29:46.897Z"
updatedAt: "2026-09-05T11:29:46.897Z"
readonly: false
realtime: true
activated: true
indexable: true
protected: false
description: "This is a sample list"
}
attachments: {
data: {
name: "Sample List"
description: "This is a sample list"
pathName: "sample-list"
schema: {
type: "object"
}
pinned: false
readonly: false
realtime: true
activated: true
indexable: true
protected: false
}
}
}

Response headers

No response headers

2024-10-29