Returns the data for the bubble of a event on the map.
GET
/api/map/event/{eventId}Authorizations
Parameters
Path Parameters
eventId*
Typestring
RequiredQuery Parameters
eventId
Store for which to return data
Typestring
Responses
Successful
JSON
{
"id": 0,
"name": "string",
"teamMemberCount": 0,
"standbyCount": 0,
"pickupCount": 0,
"pickupWeightInKg": 0,
"cooperationStart": "string",
"publicInformation": "string",
"publicPickupTime": null,
"teamSearchStatus": null,
"cooperationStatus": null,
"mayAccessStorePage": true,
"maySendRequest": true,
"mayWithdrawRequest": true,
"location": null,
"isHygieneRequired": true,
"hasHygieneCertificate": true,
"regionId": 0,
"regionName": "string"
}
Samples
cURL
curl -X GET http://localhost/api/map/event/{eventId}
JavaScript
fetch("http://localhost/api/map/event/{eventId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/map/event/{eventId}");
Python
import requests
response = requests.get("http://localhost/api/map/event/{eventId}")
print(response.json())