Skip to main content
PATCH
/
availability
/
{id}
/
holiday-exceptions
cURL
curl --request PATCH \
  --url https://api.example.com/availability/{id}/holiday-exceptions \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "year": 2026,
  "country": "DE",
  "germanState": "BW"
}
'
[
  {
    "ownerId": "<string>",
    "ownerType": "company",
    "available": true,
    "start": "<string>",
    "end": "<string>",
    "createdAt": "<string>",
    "id": 123,
    "title": "<string>",
    "note": "<string>",
    "deletedAt": "<string>"
  }
]

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Path Parameters

id
string
required

Body

application/json
year
number
required
Required range: 2025 <= x <= 2027
country
enum<string>
required
Available options:
DE,
BE,
DK,
NL,
EE,
FI,
FR,
IT,
ES,
SE,
CH
germanState
enum<string>
Available options:
BW,
BY,
ST,
MV,
BE,
BB,
HE,
NW,
RP,
SL,
SN,
TH,
SH,
HH,
NI,
HB

Response

200 - application/json
ownerId
string
required
ownerType
enum<string>
required
Available options:
company,
user
available
boolean
required
start
string
required
end
string
required
createdAt
string
required
id
number
required
title
string
note
string
deletedAt
string | null