curl --request GET \
--url https://api.hyra.io/workspace/sessions/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"schedules": [
{
"_id": "<string>",
"name": "<string>",
"external_description": "<string>",
"public_start_offset": 123,
"public_slock_offset": 123,
"series_start_date": "2023-11-07T05:31:56Z",
"game_link": "<string>",
"publish_to_discord": true,
"roles": [
"<string>"
],
"disable_cohost": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"reoccurring": true,
"cron_expression": "<string>"
}
],
"groups": [
{
"_id": "<string>",
"name": "<string>",
"roles": [
{
"_id": "<string>",
"name": "<string>"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
curl --request GET \
--url https://api.hyra.io/workspace/sessions/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"schedules": [
{
"_id": "<string>",
"name": "<string>",
"external_description": "<string>",
"public_start_offset": 123,
"public_slock_offset": 123,
"series_start_date": "2023-11-07T05:31:56Z",
"game_link": "<string>",
"publish_to_discord": true,
"roles": [
"<string>"
],
"disable_cohost": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"reoccurring": true,
"cron_expression": "<string>"
}
],
"groups": [
{
"_id": "<string>",
"name": "<string>",
"roles": [
{
"_id": "<string>",
"name": "<string>"
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object
.