Skip to main content

Get a waypoint by ID

GET 

/waypoints/:waypointId

The Get Waypoint request allows you to retrieve information about a specific waypoint of the current map in ANSCER ROBOT. This request takes in the waypoint's unique ID as a parameter, and returns a JSON object containing information about the waypoint.

Request

Path Parameters

    waypointId stringrequired

    The ID of the waypoint to retrieve, update or delete

Responses

Waypoint details

Schema
    _id uuid
    name string

    Possible values: >= 3 characters and <= 50 characters

    category waypointTypes

    Possible values: [normal, special, charging, home]

    dockMarker number
    coordinate object
    position objectrequired
    x doublerequired
    y doublerequired
    z doublerequired
    orientation objectrequired
    x doublerequired
    y doublerequired
    z doublerequired
    w doublerequired
    map object
    _id uuid
    name string

    Possible values: >= 3 characters and <= 50 characters

    properties object
    createdBy object

    The user who created this waypoint

    _id string
    name string
    email email
    updatedBy object

    The user who last updated this waypoint

    _id string
    name string
    email email
    createdAt date-time

    The date and time this waypoint was created

    updatedAt date-time

    The date and time this waypoint was last updated

Loading...