Map API
Get a Map
Map API
Get a Map
Retrieve one map that you created
GET
/
v0
/
map
/
{mapId}
curl --request GET \
--url https://realtime.nocodemapapp.com/v0/map/{mapId} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a1b2b33b4b123",
"name": "All Podcast story locations",
"isDeleted": false,
"createdAt": "2024-02-05T15:24:11.000Z",
"isPublished": false,
"googleMapApiKey": "AIzaSy123456789123456789123456789",
"geocodingApiKey": "AIzaSy123456789123456789123456789",
"fields": [
{
"name": "Name",
"type": "text"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the map to retrieve
Response
200
application/json
Map retrieved
The name of Map
Example:
"All Podcast story locations"
The ID of Map
Example:
"a1b2b33b4b123"
True if Map is deleted
Example:
false
Timestamp when this map was created
Example:
"2024-02-05T15:24:11.000Z"
True if this map is published to public
Example:
false
Google Maps API Key for loading this map
Example:
"AIzaSy123456789123456789123456789"
Google Maps API key for all geocoding required when importing locations.
Example:
"AIzaSy123456789123456789123456789"
curl --request GET \
--url https://realtime.nocodemapapp.com/v0/map/{mapId} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a1b2b33b4b123",
"name": "All Podcast story locations",
"isDeleted": false,
"createdAt": "2024-02-05T15:24:11.000Z",
"isPublished": false,
"googleMapApiKey": "AIzaSy123456789123456789123456789",
"geocodingApiKey": "AIzaSy123456789123456789123456789",
"fields": [
{
"name": "Name",
"type": "text"
}
]
}
}