Returns the data for the bubble of a store marker on the map.
GET
/api/map/stores/{storeId}Authorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
storeId*
Typestring
RequiredQuery Parameters
storeId
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
}
Authorization
api_key
Variables
Key
Value
storeId*
storeId
cURL
curl -X GET \
'http://localhost/api/map/stores/{storeId}'
Samples
cURL
curl -X GET http://localhost/api/map/stores/{storeId}
JavaScript
fetch("http://localhost/api/map/stores/{storeId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/map/stores/{storeId}");
Python
import requests
response = requests.get("http://localhost/api/map/stores/{storeId}")
print(response.json())