curl --request GET \
--url http://localhost:3000/v1/equipment/robots/{id}{
"robot": {
"id": "011000001000020053",
"display_id": "R-0001",
"label": "Robot R-0001",
"name": "Delivery Bot 1",
"status": "idle",
"is_active": true,
"active_tote_id": "<string>",
"active_tote": {
"id": "011000001000020053",
"display_id": "T-0001",
"status": "<string>",
"item_count": 123,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_display_id": 123
},
"totes": [
{
"id": "011000001000020053",
"display_id": "T-0001",
"status": "<string>",
"item_count": 123,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_display_id": 123
}
],
"tote_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}Get detailed information about a specific robot including its active tote
curl --request GET \
--url http://localhost:3000/v1/equipment/robots/{id}{
"robot": {
"id": "011000001000020053",
"display_id": "R-0001",
"label": "Robot R-0001",
"name": "Delivery Bot 1",
"status": "idle",
"is_active": true,
"active_tote_id": "<string>",
"active_tote": {
"id": "011000001000020053",
"display_id": "T-0001",
"status": "<string>",
"item_count": 123,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_display_id": 123
},
"totes": [
{
"id": "011000001000020053",
"display_id": "T-0001",
"status": "<string>",
"item_count": 123,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order_display_id": 123
}
],
"tote_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}