Locations
List of locations
Gets a list of locations that the calling user has access to.
Url:
http://dailychex.meazureup.com/api-v2/locations/
Method: GET
Response:
# success
{
count:10, # number of locations in the result
results: [
{
"id": 123, # store id
"name": "Chicago",
"address": "Chicago, IL, USA",
"timezone": "America/Chicago",
"brand": "Brand name if set",
"market": "Market if set",
"location_type": "Takeout",
"is_corporate": true,
"opening_schedule": {
... # work starting and end time
},
}, # end of one store
{...} # rest of the stores
]
}
# error
{"detail": "error description"}