POST
move_robot_along_trajectory/robot/move_robot_along_trajectoryRequest Body
| Field | Type | Description |
|---|---|---|
robot_name | string | Robot asset name in the scene |
trajectory | array | Joint-space trajectory (waypoints) |
joint_names | array | Joint names aligned with positions |
step_size | int | Interpolation or step scale |
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",
"trajectory": [[]],
"joint_names": [],
"step_size": 1,
"sync": true
}Response200 OK
{
"success": true,
"msg": "ok",
"data": null
}