Skip to main content
GET
/
v1
/
equipment
/
robots
/
{id}
Get robot by ID
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"
  }
}

Path Parameters

id
string
required

18-digit taxonomy ID

Example:

"011000001000020053"

Response

Robot details

robot
object
required