...
GET {url}/localtrac/locations/<location_uuid>/schedules | ||||||
---|---|---|---|---|---|---|
This route will return the list of the location’s regular opening hours. If one day is different (abnormal), use Schedule Exceptions instead. | ||||||
Request | ||||||
Headers | ||||||
Authorization | <token> obtained during the Authentication | |||||
Accept | application/json | |||||
Response (200) - Success | ||||||
Headers | ||||||
Content-type | application/json | |||||
Cache-Control | no-cache,private | |||||
Body | ||||||
| ||||||
<day> | Each row represents a day of the week. This row contains an array of intervals representing the opening hours of that day.
|
GET {url}/localtrac/locations/<location_uuid>/scheduleexceptions | ||||||
---|---|---|---|---|---|---|
This route will return the list of special opening hours (exceptions) where the opening hours of the location differ from the regular opening hours. | ||||||
Request | ||||||
Query | ||||||
p | <int> Page to obtain | |||||
Headers | ||||||
Authorization | <token> obtained during the Authentication | |||||
Accept | application/json | |||||
Response (200) - Success | ||||||
Headers | ||||||
Content-type | application/json | |||||
Cache-Control | no-cache,private | |||||
Body | ||||||
| ||||||
<day> | Each row represent a specific day where the opening hours differ from the regular opening hours. This row contains an array of intervals representing the opening hours of that day. |
...