v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
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

statusstring

Status of the request. Should say "success" unless something unexpected went wrong.

idstring

ID of the business that was just updated.

Example response

{
  "status": "success",
  "id": "545f7bf982efa41a496379d2"
}