get_robot_command
Retrieve execution results for specific robot commands by providing the robot's serial number and command ID to monitor task completion and status.
Instructions
Gets the result of a specific robot command.
Args:
serial_number: The serial number of the target robot.
command_id: The ID of the command to query.
Returns:
A dictionary containing the command execution result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | ||
| command_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"command_id": {
"title": "Command Id",
"type": "string"
},
"serial_number": {
"title": "Serial Number",
"type": "string"
}
},
"required": [
"serial_number",
"command_id"
],
"type": "object"
}