BizKitHub
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

JSON body

Request body

application/json
slugstringRequired

Branch slug.

exceptionDatestringRequired

Exception date in ISO YYYY-MM-DD.

Example2026-12-24
isOpenbooleanRequired

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

reasonstringOptional

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

Response schema

1 status code documented

200Success
successbooleanRequired

Response example

application/json
{
  "success": false
}

Request example

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"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key