Get robot request status
GET/robot-requests/status
Retrieve the status of robot requests.
Request
Query Parameters
stationId uuid
The ID of the station to filter robot requests
storeId uuid
The ID of the store to filter robot requests
Responses
- 200
- 401
- 403
- 500
Robot request status
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
_id uuid
stationId object
locationId string
missionLogId uuid
assignedRobot uuid
load object
status string
Possible values: [requested, processing, approved, initiated, completed, aborted, cancelled]
sku string[]
requestType string
Possible values: [pickup, dropoff, empty]
trolleyCount number
finishedAt date-time
processedAt date-time
approvedAt date-time
initiatedAt date-time
bufferId object
properties object
storeId uuid
from string
Possible values: [station, store]
message string
createdAt date-time
updatedAt date-time
[
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"stationId": {},
"locationId": "string",
"missionLogId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"assignedRobot": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"load": {},
"status": "requested",
"sku": [
"string"
],
"requestType": "pickup",
"trolleyCount": 0,
"finishedAt": "2025-06-05T13:40:40.563Z",
"processedAt": "2025-06-05T13:40:40.563Z",
"approvedAt": "2025-06-05T13:40:40.563Z",
"initiatedAt": "2025-06-05T13:40:40.563Z",
"bufferId": {},
"properties": {},
"storeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"from": "station",
"message": "string",
"createdAt": "2025-06-05T13:40:40.563Z",
"updatedAt": "2025-06-05T13:40:40.563Z"
}
]
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...