Timeoff
Retrieve staff information
API Documentation
Activity
- In-Game Tracking
- Users
- Sessions
- GETRetrieve Leaderboard
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
Timeoff
Retrieve staff information
Retrieve timeoff information for a staff member
GET
/
staff
/
timeoff
/
{workspaceId}
/
{staffId}
curl --request GET \
--url https://api.hyra.io/staff/timeoff/{workspaceId}/{staffId} \
--header 'Authorization: Bearer <token>'
{
"currently_out": true,
"requests": [
{
"_id": "<string>",
"end": "2023-11-07T05:31:56Z",
"start": "2023-11-07T05:31:56Z",
"type": "<string>",
"notes": "<string>",
"user": "<string>",
"state_changed_by": "<string>",
"other": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"status": "pending",
"requested_by": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Default Response
Available options:
pending
, approved
, denied
, cancelled
curl --request GET \
--url https://api.hyra.io/staff/timeoff/{workspaceId}/{staffId} \
--header 'Authorization: Bearer <token>'
{
"currently_out": true,
"requests": [
{
"_id": "<string>",
"end": "2023-11-07T05:31:56Z",
"start": "2023-11-07T05:31:56Z",
"type": "<string>",
"notes": "<string>",
"user": "<string>",
"state_changed_by": "<string>",
"other": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"status": "pending",
"requested_by": "<string>"
}
]
}