curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions/status \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"deletedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
}
},
"sort": {},
"expand": [
"<string>"
]
}
'{
"data": [
{
"id": "<string>",
"status": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"currentPage": 123,
"pageSize": 123,
"totalPages": 123,
"totalResults": 123
}
}Returns a lightweight list of session statuses, including deleted sessions. Supports filtering by deletedAt in addition to standard filters.
curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions/status \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"deletedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
}
},
"sort": {},
"expand": [
"<string>"
]
}
'{
"data": [
{
"id": "<string>",
"status": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"currentPage": 123,
"pageSize": 123,
"totalPages": 123,
"totalResults": 123
}
}Documentation Index
Fetch the complete documentation index at: https://apidocs.sessionboard.com/llms.txt
Use this file to discover all available pages before exploring further.
Organization API token. Generate from Organization Settings → API Tokens.
The event ID.
Page number for pagination.
1 <= x <= 999Number of results per page.
1 <= x <= 100