View list event

Fetch an event for the specified list.

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

Example

cURL
12curl https://api.jsonpad.io/lists/44460ddd-e9cf-4746-a809-278b097aa8c9/events/2a4c6fb7-95a1-427f-8864-2afd64548d77 \ -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    eventIdstringAn event id.
  • optional
    includeSnapshotbooleanhttps://api.jsonpad.io/lists/c22a606f-4976-4027-9f34-f9ca6a3b12ba/events/daba656a-39b2-4c8a-811b-86b6402bd32d?includeSnapshot=trueInclude the event's snapshot in the response. Defaults to false.
  • optional
    includeAttachmentsbooleanhttps://api.jsonpad.io/lists/b1dc8a46-6f66-48ee-acfb-095505dc58f3/events/e2ff6514-4a02-47cb-b485-c7b36499d2d0?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: "aeb5ea45-1d23-4de6-8a15-0bfc81a9d675"
createdAt: "2026-09-23T21:08:09.623Z"
updatedAt: "2026-09-23T21:08:09.623Z"
user: {
id: "9645a724-b8e5-4c32-a0e4-56b46a05bf24"
createdAt: "2026-09-23T21:08:09.623Z"
updatedAt: "2026-09-23T21:08:09.623Z"
lastActiveAt: "2026-09-23T21:08:09.623Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "f4b18bd7-288f-4a4b-a3a4-cc560a5a0b84"
stream: "list"
type: "list-created"
version: null
}

Response headers

No response headers

2026-09-12