Provides store identifiers for stores of a region.
GET
/api/region/{regionId}/stores
Authorizations
api_key
Requests manipulating data need to supply a CSRF token
TypeAPI Key (header: X-CSRF-Token)
Parameters
Path Parameters
regionId*
Typestring
RequiredPattern
"\\d+"
Responses
Success.
application/json
JSON
{
"total": 1,
"stores": [
{
"id": 0,
"name": "string",
"region": {
"id": 0,
"name": "string"
},
"location": {
"lat": 52.5,
"lon": 13.4
},
"street": "string",
"city": "string",
"zipCode": "string",
"cooperationStatus": 0,
"createdAt": "string"
}
]
}