GET /api/v2/sessions/getTags
Returns all session tags for a given event.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/sessions/getTags
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the event to retrieve session tags for |
Response Format
Success Response (HTTP 200)
The data field contains an array of tag objects.
Tag Object Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
The tag ID |
|
|
string |
The tag label |
|
|
integer |
Unix timestamp of the last modification |
Error Responses
|
HTTP Code |
Condition |
Error Message |
|---|---|---|
|
400 |
|
|
|
400 |
|
|
|
400 |
Event not found |
|
|
403 |
Missing or invalid API key |
|
Example Request
Bash
curl -X GET "https://your-event-domain.com/api/v2/sessions/getTags?event_id=7" \
-H "Authorization: Bearer your_api_key_here"
Example Response
JSON
{
"code": 200,
"response_id": "1678391791.907073",
"data": [
{ "id": 5, "title": "Keynote", "last_update": 1678391791 },
{ "id": 6, "title": "Workshop", "last_update": 1678391800 }
]
}