Skip to content

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
Required

Query 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
}
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())