Skip to content

Provides store identifiers for stores of a region.

GET
/api/region/{regionId}/stores

Authorizations

Parameters

Path Parameters

regionId*
Typestring
Required

Responses

Success.
JSON
{
"total": 1,
"stores": [
{
"id": 0,
"name": "string",
"region": null,
"location": null,
"street": "string",
"city": "string",
"zipCode": "string",
"cooperationStatus": null,
"createdAt": "string"
}
]
}

Samples

cURL
curl -X GET http://localhost/api/region/{regionId}/stores
JavaScript
fetch("http://localhost/api/region/{regionId}/stores")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/region/{regionId}/stores");
Python
import requests
response = requests.get("http://localhost/api/region/{regionId}/stores")
print(response.json())