GET /api/user/{userId}/stores
GET
/api/user/{userId}/storesAuthorizations
Parameters
Path Parameters
userId*
Typestring
RequiredQuery Parameters
activeStores
filter unactive stores (e.g. store that do not cooperate)?
Typeinteger
Enum0, 1
Responses
Success.
JSON
[
{
"id": 1,
"name": "Govinda Natur GmbH",
"isManaging": "false",
"membershipStatus": null,
"pickupStatus": null
}
]
Samples
cURL
curl -X GET http://localhost/api/user/{userId}/stores
JavaScript
fetch("http://localhost/api/user/{userId}/stores")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/user/{userId}/stores");
Python
import requests
response = requests.get("http://localhost/api/user/{userId}/stores")
print(response.json())