Quick Goal Waypoint
POST/robot/quickgoal/:waypointId
The Quick Goal Waypoint request allows you to send a quick goal to the robot. This request takes in the waypoint's unique ID as a parameter, and will send the Robot to the desired waypoint.
Request
Path Parameters
waypointId stringrequired
The ID of the waypoint to send the robot to.
Responses
- 200
- 400
- 401
- 403
- 404
- 500
Quick Goal sent
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Quick Goal sent"
}
{
"message": "Quick Goal sent"
}
Robot is not in Auto Mode, to perform this turn Robot to Autonomous mode.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Robot is not in Auto Mode, to perform this turn Robot to Autonomous mode."
}
{
"message": "Robot is not in Auto Mode, to perform this turn Robot to Autonomous mode."
}
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Resource not found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Resource not found."
}
{
"message": "Resource not found."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...