Robots
Configure vitals for a robot
This endpoint configures vitals collection on a robot
curl --request PATCH https://api.airbotics.io/robots/robot0/vitals/config \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
--data '{
"enabled": true
}'
{
"message": "You have configured vitals for that robot."
}
Path parameters
id
string
requiredThe ID of the robot.
Body parameters
enabled
boolean
Whether vitals collection should be enabled
curl --request PATCH https://api.airbotics.io/robots/robot0/vitals/config \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
--data '{
"enabled": true
}'
{
"message": "You have configured vitals for that robot."
}