Authorization: Bearer ********************{
"hours": [
{
"dayOfWeek": 0,
"startTime": "string",
"endTime": "string"
}
]
}curl --location --request PUT 'https://prod.your-api-server.com/locations//hours' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"hours": [
{
"dayOfWeek": 0,
"startTime": "string",
"endTime": "string"
}
]
}'