View an index event

Fetch an event for the specified index.

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

Example

cURL
12curl https://api.jsonpad.io/lists/1ca7f70f-f801-4f45-baa6-ef1227248c76/indexes/ea59d1fe-070a-451a-a876-7c149033c829/events/6dd519a2-6cdd-42c6-82e5-2852f268a2e7 \ -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    indexIdstringAn index id or path name.
  • required
    eventIdstringAn event id.
  • optional
    includeSnapshotbooleanhttps://api.jsonpad.io/lists/53116017-590a-4277-8ae8-28c853b97a03/indexes/ba66db8e-1267-410c-a68f-bb9b704f32dd/events/5e169f3b-c97c-402c-b7fd-112295696330?includeSnapshot=trueInclude the event's snapshot in the response. Defaults to false.
  • optional
    includeAttachmentsbooleanhttps://api.jsonpad.io/lists/282749c0-5b34-4caf-936a-f3f08980e051/indexes/7e832745-1c96-440d-bd44-eb92b0413d52/events/9cbb3b73-6994-4bad-b3d0-c82fc258308e?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: "c043c48e-0d70-4912-b3ff-12434c672528"
createdAt: "2026-09-23T21:08:36.073Z"
updatedAt: "2026-09-23T21:08:36.073Z"
user: {
id: "462855ea-a9b4-4ebc-9de7-1059dbf6805e"
createdAt: "2026-09-23T21:08:36.073Z"
updatedAt: "2026-09-23T21:08:36.073Z"
lastActiveAt: "2026-09-23T21:08:36.073Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "6fb6ee68-1c9f-4bac-982b-93b68a2d5936"
stream: "index"
type: "index-created"
version: null
}

Response headers

No response headers

2026-09-12