Sessions
Get Upcoming Sessions
API Documentation
Activity
Order Logging
Staff
Workspace
- GETRetrieve a Workspace
- POSTUpdate a Workspace
- GETList Games
- POSTCreate Game
- DELDelete a Game
- GETList Roles
- POSTCreate a Role
- PUTUpdate Role
- DELDelete a Role
- GETList logbook templates
- GETRetrieve Logbook Template
- POSTCreate a Logbook Template
- PATCHUpdate a Logbook Template
- DELDelete a Logbook Template
- GETRetrieve GApps Config
- POSTSet GApps Service Account
- PATCHUpdate GApps Config
- DELDelete GApps Config
- GETGet Trello Config
- GETGet Trello boards
- POSTSet Trello board
- POSTSet Trello format
- DELDisconnect Trello board
- DELDelete Trello Config
- GETRetrieve Schedules
- POSTCreate a Schedule
- POSTUpdate a Schedule
Trello Integration
Bans (Invite Only)
Connections
Sessions
Get Upcoming Sessions
Get upcoming sessions
GET
/
activity
/
sessions
/
{workspaceId}
/
upcoming
curl --request GET \
--url https://api.hyra.io/activity/sessions/{workspaceId}/upcoming \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"schedule": {
"_id": "<string>",
"name": "<string>",
"public_start_offset": 123,
"public_slock_offset": 123,
"publish_to_discord": true,
"game_link": "<string>"
},
"start": "<string>",
"host": {
"exists": true,
"id": "<string>",
"username": "<string>",
"display_name": "<string>"
},
"co_host": {
"exists": true,
"id": "<string>",
"username": "<string>",
"display_name": "<string>"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Limit the number of results. Minimum: 1, Maximum: 100
Response
200 - application/json
Default Response
curl --request GET \
--url https://api.hyra.io/activity/sessions/{workspaceId}/upcoming \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"schedule": {
"_id": "<string>",
"name": "<string>",
"public_start_offset": 123,
"public_slock_offset": 123,
"publish_to_discord": true,
"game_link": "<string>"
},
"start": "<string>",
"host": {
"exists": true,
"id": "<string>",
"username": "<string>",
"display_name": "<string>"
},
"co_host": {
"exists": true,
"id": "<string>",
"username": "<string>",
"display_name": "<string>"
}
}
]