GET /api/v2/sessions/getSession
Returns full details for a single session by its ID.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/sessions/getSession
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the session to retrieve |
Response Format
Success Response (HTTP 200)
The data field contains a single session object with the following fields:
|
Field |
Type |
Nullable |
Description |
|---|---|---|---|
|
|
integer |
No |
Session ID |
|
|
string |
Yes |
External identifier from your system |
|
|
integer |
Yes |
Associated exhibitor ID, if this session belongs to an exhibitor |
|
|
integer |
No |
Session start time as a Unix timestamp |
|
|
integer |
No |
Session end time as a Unix timestamp |
|
|
string |
No |
Session title |
|
|
string |
No |
Session description |
|
|
string |
No |
URL of the session logo |
|
|
string |
Yes |
Session abstract |
|
|
integer |
No |
Track (event category) ID |
|
|
integer |
No |
Session type ID |
|
|
integer |
No |
Hall ID (location) |
|
|
integer |
Yes |
Stand ID, if applicable |
|
|
boolean |
No |
Whether the session is currently active |
|
|
boolean |
No |
Whether the session is featured |
|
|
string |
Yes |
Visibility restrictions by participant category. |
|
|
array[integer] |
No |
Array of account IDs of the session speakers |
|
|
array[integer] |
No |
Array of account IDs of the session moderators |
|
|
array[integer] |
No |
Array of sponsor IDs linked to the session |
|
|
array[integer] |
No |
Array of session tag IDs |
|
|
integer |
No |
Session price. |
|
|
integer |
No |
Maximum number of attendees. |
|
|
integer |
No |
Maximum schedule slots |
|
|
boolean |
No |
Whether this is a round-table format session |
|
|
array[object] |
No |
List of participants who have this session in their schedule. Each entry contains |
|
|
integer |
No |
Unix timestamp of the last modification |
Error Responses
|
HTTP Code |
Condition |
Error Message |
|---|---|---|
|
400 |
|
|
|
400 |
|
|
|
400 |
Session not found |
|
|
403 |
Missing or invalid API key |
|
Example Request
curl -X GET "https://your-event-domain.com/api/v2/sessions/getSession?id=42" \
-H "Authorization: Bearer your_api_key_here"