Returns the data for the bubble of a community marker on the map.
GET
/api/map/regions/{regionId}Authorizations
Parameters
Path Parameters
regionId*
Typestring
RequiredQuery Parameters
regionId
Region for which to return the description
Typestring
Responses
Successful
Samples
cURL
curl -X GET http://localhost/api/map/regions/{regionId}
JavaScript
fetch("http://localhost/api/map/regions/{regionId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/map/regions/{regionId}");
Python
import requests
response = requests.get("http://localhost/api/map/regions/{regionId}")
print(response.json())