I'm using createInventoryLocation (https://developer.ebay.com/api-docs/sell/inventory/resources/location/methods/createInventoryLocatio...) to create a store location, in this call I'm attempting to add the store operating hours.
in my post, my operatingHours array is as follows:
"operatinghours": [
{
"dayOfWeekEnum": "MONDAY",
"intervals": [
{
"open": "09:00:00",
"close": "17:00:00"
}
]
},
{
"dayOfWeekEnum": "TUESDAY",
"intervals": [
{
"open": "09:00:00",
"close": "17:00:00"
}
]
},
{
"dayOfWeekEnum": "WEDNESDAY",
"intervals": [
{
"open": "09:00:00",
"close": "17:00:00"
}
]
}
]
This is accepted by the API and I'm given a 204 No Content Return, however, if then retrieve the location using a GET, this data isn't included.
The documentation on the response suggests this should be returned when I attempt to retrieve the location, but they don't show. The developer AI has been of no help, unfortunately just asking me to read the documentation again.
Is there any way for me to see what they are set to? I can't see anywhere on the sandbox test account I'm using where I would be see inventory locations on the front end, every link seems to be sending me to the live location.
If they have been set, is there any way for me to retrieve them?
I feel like I'm missing something obvious here, any assistance would be greatly appreciated!
PS. I'm on the sandbox environment here