Businesses
Set more hours for your business
This endpoint allows you to set the More Hours for your business.
post/business/{business_id}/more_hours
Path parameters
business_idstring required
Business id.
It may be replaced by c-{code} where code is the store code, which should be unique per organization. This can be used only for ORG_ADMIN, GROUP_MANAGER and BUSINESS_MANAGER users.
Request body
Example request
{
"more_hours": [
{
"gmb_id": "KITCHEN",
"value": {
"monday": [],
"tuesday": [],
"wednesday": [],
"thursday": [],
"friday": [],
"saturday": [
"08:00-15:00",
"18:00-23:00"
],
"sunday": [
"08:00-15:00",
"18:00-23:00"
]
}
},
{
"gmb_id": "BRUNCH",
"value": null
}
]
}Response
OK
Example response
{
"status": "success",
"id": "545f7bf982efa41a496379d2"
}