Order Logging
Update Order
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
Order Logging
Update Order
Modify an order
PATCH
/
players
/
orders
/
{workspaceId}
/
{orderId}
curl --request PATCH \
--url https://api.hyra.io/players/orders/{workspaceId}/{orderId} \
--header 'Content-Type: application/json' \
--data '{
"prepared_by": "<string>",
"picked_up_by": "<string>",
"status": "submitted"
}'
{
"order_number": 123,
"items": [
"<string>"
],
"submitted_by": "<string>",
"prepared_by": "<string>",
"picked_up_by": "<string>",
"status": "submitted",
"customer": "<string>",
"workspace": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"_id": "<string>"
}
Body
application/json
Response
200 - application/json
Order modified successfully
curl --request PATCH \
--url https://api.hyra.io/players/orders/{workspaceId}/{orderId} \
--header 'Content-Type: application/json' \
--data '{
"prepared_by": "<string>",
"picked_up_by": "<string>",
"status": "submitted"
}'
{
"order_number": 123,
"items": [
"<string>"
],
"submitted_by": "<string>",
"prepared_by": "<string>",
"picked_up_by": "<string>",
"status": "submitted",
"customer": "<string>",
"workspace": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"_id": "<string>"
}