Skip to main content
PATCH
/
v1
/
equipment
/
robots
/
{id}
Update robot
curl --request PATCH \
  --url http://localhost:3000/v1/equipment/robots/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "idle",
  "is_active": true,
  "active_tote_id": "<string>"
}
'
{
  "success": true,
  "robot": {
    "id": "011000001000020053",
    "display_id": "<string>",
    "label": "<string>",
    "name": "<string>",
    "status": "idle",
    "is_active": true,
    "active_tote_id": "<string>"
  }
}

Path Parameters

id
string
required

18-digit taxonomy ID

Example:

"011000001000020053"

Body

application/json
status
enum<string>
Available options:
idle,
delivering,
charging,
error
is_active
boolean
active_tote_id
string | null

Tote taxonomy ID to assign (null to unassign)

Response

Robot updated successfully

success
boolean
required
robot
object
required