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
Change a Session Role
Change session user
PATCH
/
activity
/
sessions
/
{workspaceId}
/
{eventId}
/
change
curl --request PATCH \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/change \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"group_id": "<string>",
"prop": "<string>",
"role_id": "<string>",
"server_id": "<string>",
"value": "<string>"
}'
{
"success": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
Default Response
The response is of type object
.
curl --request PATCH \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/change \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"group_id": "<string>",
"prop": "<string>",
"role_id": "<string>",
"server_id": "<string>",
"value": "<string>"
}'
{
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.