Sessions
Create a Server
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
Create a Server
Create a server for an event
POST
/
activity
/
sessions
/
{workspaceId}
/
{eventId}
/
server
curl --request POST \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/server \
--header 'Authorization: Bearer <token>'
{
"source": "<string>",
"groups": [
{
"_id": "<string>",
"name": "<string>",
"priority": 123,
"roles": [
{
"_id": "<string>",
"user_id": "<string>"
}
],
"attendees": [
{
"_id": "<string>",
"user_id": "<string>"
}
]
}
],
"created_by": "<string>",
"_id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Default Response
curl --request POST \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/server \
--header 'Authorization: Bearer <token>'
{
"source": "<string>",
"groups": [
{
"_id": "<string>",
"name": "<string>",
"priority": 123,
"roles": [
{
"_id": "<string>",
"user_id": "<string>"
}
],
"attendees": [
{
"_id": "<string>",
"user_id": "<string>"
}
]
}
],
"created_by": "<string>",
"_id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}