You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Locator API: /api/locations/v3/search/availabilities/ returns responses which are not valid with Open API specification:
OpenHours should be a string and usually it is returned as string but for some access points e.g. U82219798 it is an array:
{
"Day": "6",
"OpenHours": [
"900",
"1400"
],
"CloseHours": [
"1330",
"1800"
]
}
SpecialInstructions should be an object but sometimes it's returned as string.
Distance.UnitOfMeasurement should be an object but sometimes is returned as string when queried by specific access point:
Could you please check the returned responses to be in line with the specification? It's causing issues when generating Java classes from the specification and then parsing the response. Some workarounds need to be done in order to use this API.
The Locator API: /api/locations/v3/search/availabilities/ returns responses which are not valid with Open API specification:
{
"Day": "6",
"OpenHours": [
"900",
"1400"
],
"CloseHours": [
"1330",
"1800"
]
}
Could you please check the returned responses to be in line with the specification? It's causing issues when generating Java classes from the specification and then parsing the response. Some workarounds need to be done in order to use this API.