curl --request GET \
--url https://api.hyra.io/workspace/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"_id": "<string>",
"group_id": "<string>",
"name": "<string>",
"theme": "<string>",
"week_starts_on": "<string>",
"permissions": [
"<string>"
],
"onboarded": true,
"games": [
{
"id": "<string>",
"name": "<string>",
"thumbnail": "<string>"
}
],
"shares_info": true,
"cover_image": "<string>"
}
Get general settings
curl --request GET \
--url https://api.hyra.io/workspace/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"_id": "<string>",
"group_id": "<string>",
"name": "<string>",
"theme": "<string>",
"week_starts_on": "<string>",
"permissions": [
"<string>"
],
"onboarded": true,
"games": [
{
"id": "<string>",
"name": "<string>",
"thumbnail": "<string>"
}
],
"shares_info": true,
"cover_image": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Workspace ID
Default Response
The response is of type object
.