v1
latestOpenAPI 3.1.02026-07-22285495.1 KBSessions
Get all sessions
Use this endpoint to retrieve the list of all sessions in a particular event type in your Zuddl organization. You can use query parameters such as filter, pagination, or sort to customize the response
Required API key scopes: READ
get/v1/events/{eventId}/sessions
Path parameters
eventIdstring required
Unique identifier of the event
Query parameters
filterstring
Filter query in format:
Available filters:
- startDateTime: operations [gt, lt, lte, gte, between, eq]
- endDateTime: operations [gt, lt, lte, gte, between, eq]
sortstring
Sort query in format:
The following fields are sortable:
- startDateTime
- endDateTime
- title
pagenumber
Page number (default: 1)
sizenumber
Page size (default: 10, max: 50)
Response
List of sessions retrieved successfully
Example response
{
"pagination": {
"next": "/{apiEndpoint}?page=3",
"current": "/{apiEndpoint}?page=2",
"previous": "/{apiEndpoint}?page=1"
},
"data": [
{
"id": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"title": "Maximize Your Potential: Strategies for Success in a Digital World",
"description": "<p>Join us for an engaging online session designed to equip you with practical tools and insights for thriving in today's fast-paced, technology-driven environment.</p>",
"startDateTime": "2025-03-14T05:55:00Z",
"endDateTime": "2025-03-14T05:55:00Z",
"location": [
{
"locationId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"locationName": "Session location"
}
],
"speakers": [
{
"speakerId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397"
}
],
"sponsors": [
{
"sponsorId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397"
}
],
"tags": [
"tag1",
"tag2"
],
"files": [
{
"fileId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"fileName": "Presentation",
"fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
}
],
"availableSpots": 100,
"totalCapacity": 100,
"remainingCapacity": 75,
"externalRefId": "d812a64f8865428990249a120792c3d8",
"parentSessionId": "d812a64f8865428990249a120792c3d8"
}
]
}