Skip to main content

Get a map by ID

GET 

/maps/:mapId

The Get Map request allows authenticated users to retrieve detailed information about a specific map. This request can be accessed by any authenticated user with the appropriate permissions.

Request

Path Parameters

    mapId stringrequired

    The ID of the map to retrieve, update or delete

Responses

Map details

Schema
    _id uuid
    name string

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

    isActive boolean
    properties object
    origin object
    position objectrequired
    x doublerequired
    y doublerequired
    z doublerequired
    orientation objectrequired
    x doublerequired
    y doublerequired
    z doublerequired
    w doublerequired
    width double
    height double
    resolution double
    previewUrl uri
    createdBy object

    The user who created this map

    _id string
    name string
    email email
    updatedBy object

    The user who last updated this map

    _id string
    name string
    email email
    createdAt date-time

    The date and time this user was created

    updatedAt date-time

    The date and time this user was last updated

Loading...