POST
navigate_to/navigation/navigate_toRequest Body
| Field | Type | Description |
|---|---|---|
robot_name | string | Robot asset name in the scene |
goal_x | int | — |
goal_y | int | — |
goal_theta | int | — |
sync | bool | Wait for completion when true |
Response200 OK
| Field | Type | Description |
|---|---|---|
success | bool | Whether the call succeeded |
msg | string | Status or error message |
data | null | Payload; shape depends on the endpoint |
Request bodyJSON
{
"robot_name": "r",
"goal_x": 2,
"goal_y": 1,
"goal_theta": 0,
"sync": true
}Response200 OK
{
"success": true,
"msg": "Navigation complete",
"data": null
}