curl --request GET \
--url http://localhost:3000/v1/equipment/robots{
"robots": [
{
"id": "011000001000020053",
"display_id": "R-0001",
"label": "Robot R-0001",
"name": "Delivery Bot 1",
"status": "idle",
"is_active": true,
"has_tote": true,
"active_tote_id": "<string>"
}
],
"stats": {
"total": 123,
"online": 123,
"offline": 123,
"idle": 123,
"delivering": 123,
"charging": 123,
"error": 123
}
}Get a list of all robots with optional filtering by status or active state
curl --request GET \
--url http://localhost:3000/v1/equipment/robots{
"robots": [
{
"id": "011000001000020053",
"display_id": "R-0001",
"label": "Robot R-0001",
"name": "Delivery Bot 1",
"status": "idle",
"is_active": true,
"has_tote": true,
"active_tote_id": "<string>"
}
],
"stats": {
"total": 123,
"online": 123,
"offline": 123,
"idle": 123,
"delivering": 123,
"charging": 123,
"error": 123
}
}