View an index event

Fetch an event for the specified index.

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

Example

cURL
123curl https://api.jsonpad.io/lists/b6111aa7-dbcd-49ce-9156-a0ffe6b92165/indexes/43ac5091-1c02-4ce1-8b94-a5d8af9c6948/events/56a9a86d-672d-4e3e-ad9c-cb75a5e8918c \
  -H "Content-Type: application/json" \
  -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.

Request headers

  • required
    x-api-tokenstringYour API token.

Request body

No request body

Response body

200 OK
{
id: "713b51e3-bd1e-40c4-b25a-469be3f72e67"
createdAt: "2026-09-05T11:30:22.916Z"
updatedAt: "2026-09-05T11:30:22.916Z"
user: {
id: "ffbd5a99-163a-4a2c-85e6-57b28a7e4261"
createdAt: "2026-09-05T11:30:22.916Z"
updatedAt: "2026-09-05T11:30:22.916Z"
lastActiveAt: "2026-09-05T11:30:22.916Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
modelId: "ad3594e4-11a5-4546-a68d-29d5b7406127"
stream: "index"
type: "index-created"
version: null
snapshot: {
id: "ad3594e4-11a5-4546-a68d-29d5b7406127"
name: "Test Index"
type: "index"
alias: false
listId: "35496c73-7961-435e-a813-c4a34fc2059a"
locked: false
pointer: "/name"
sorting: true
pathName: "sample-index"
activated: true
createdAt: "2026-09-05T11:30:22.916Z"
filtering: true
searching: true
updatedAt: "2026-09-05T11:30:22.916Z"
valueType: "string"
description: "Sample index description"
defaultOrderDirection: "asc"
}
attachments: {
data: {
list: "sample-list"
name: "Sample Index"
alias: false
pointer: "/name"
sorting: true
pathName: "sample-index"
activated: true
filtering: true
searching: true
valueType: "string"
description: "Sample index description"
defaultOrderDirection: "asc"
}
}
}

Response headers

No response headers

2024-10-29