DocsAPI ReferenceBranch/bff/branch/add-opening-hour-exception
postBranchAdmin BFF

/bff/branch/add-opening-hour-exception

Creates a new opening hour exception for a specific date. Idempotent per (branch, date) pair.

BranchpostBffBranchAdd-opening-hour-exception

Parameters

4 body

4 total
Body · 4
slugstringRequired

Branch slug.

exceptionDatestringRequired

Exception date in ISO YYYY-MM-DD.

isOpenbooleanRequired

Whether the branch is open or closed on the exception date.

reasonstring

Reason for the exception (e.g. "Christmas Eve").

Request

POST /bff/branch/add-opening-hour-exception

post
curl -X POST "https://api.bizkithub.com/bff/branch/add-opening-hour-exception" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "slug": "example_slug",
  "exceptionDate": "2026-12-24",
  "isOpen": false,
  "reason": "example_reason"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key