PUT
/
v0
/
map
/
{mapId}
/
location
/
{locationId}
curl --request PUT \
  --url https://realtime.nocodemapapp.com/v0/map/{mapId}/location/{locationId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "fields": {
    "Name": "The Kooks Restaurant",
    "Address": "Frammi við Gjónna, Leynavatn 410, Faroe Islands",
    "key": "The Kooks Restaurant"
  },
  "order": "1"
}'
[
  {
    "id": "04P1DY1YbwePX2rjKo3H",
    "name": "The Kooks Restaurant",
    "placeId": "ChIJ6_ktdpMVvEgRJBv3ZEgxsD8",
    "latLngLiteral": {
      "lat": "61.89263500000001",
      "lng": "-6.911805999999999"
    },
    "properties": {
      "Restaurant": "The Kooks Restaurant",
      "Address": "Frammi við Gjónna, Leynavatn 410, Faroe Islands",
      "key": "The Kooks Restaurant"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

mapId
string
required

ID of the map to retrieve

locationId
string
required

ID of the map location to retrieve

Body

application/json
fields
object
required

All data of this location as object. MUST include a name & address field that was specified at the creation of Map.

Example:
{
  "Name": "The Kooks Restaurant",
  "Address": "Frammi við Gjónna, Leynavatn 410, Faroe Islands",
  "key": "The Kooks Restaurant"
}
order
integer

By default locations are listed by {order} in ascending order. Specify if you have specific preference on where this location shall be shown in the list. By default, it’s appended to the end of list.

Example:

"1"

Response

200
application/json
Location response
name
string
required

The name of Location

Example:

"The Kooks Restaurant"

id
string

The ID of Location

Example:

"04P1DY1YbwePX2rjKo3H"

placeId
string

The placeId resolved (via geocoding) for this location

Example:

"ChIJ6_ktdpMVvEgRJBv3ZEgxsD8"

latLngLiteral
object
properties
object

This object contains all the data fields that were passed in for this location at import/creation

Example:
{
  "Restaurant": "The Kooks Restaurant",
  "Address": "Frammi við Gjónna, Leynavatn 410, Faroe Islands",
  "key": "The Kooks Restaurant"
}