GET sessions/getTags

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

event_id

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

id

integer

The tag ID

title

string

The tag label

last_update

integer

Unix timestamp of the last modification


Error Responses

HTTP Code

Condition

Error Message

400

event_id is missing

Missing required parameter: event_id

400

event_id is not a valid integer

Param must be a integer: event_id

400

Event not found

Could not find an event with id = <event_id>

403

Missing or invalid API key

Forbidden


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 }
  ]
}