Room Type Availability
Pushes a room type availabilities
Fields
Finds a room type availabilities
Last updated
Last updated
POST /api/external/v0/room-type/availability/push HTTP/1.1
Host: stage-api.forhotel.eu
api-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 125
[
{
"room_type_id": 1,
"date": "2026-01-30",
"from": "2026-01-30",
"to": "2026-01-30",
"availabilities": [
{
"type": "ONLINE",
"count": 1
}
]
}
]{
"status": "text"
}{
"ONLINE": 20
}{
"BOOKING_ENGINE": 15,
"CHANNEL_MANAGER": 5
}POST /api/external/v0/room-type/availability/push/map HTTP/1.1
Host: stage-api.forhotel.eu
api-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 125
[
{
"room_type_id": 1,
"date": "2026-01-30",
"from": "2026-01-30",
"to": "2026-01-30",
"availabilities": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}
]{
"status": "text"
}POST /api/external/v0/room-type/availability/find HTTP/1.1
Host: stage-api.forhotel.eu
api-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 56
{
"room_type_id": 1,
"from": "2026-01-30",
"to": "2026-01-30"
}[
{
"date": "2026-01-30",
"availabilities": [
{
"type": "ONLINE",
"count": 1
}
]
}
]POST /api/external/v0/room-type/availability/find/map HTTP/1.1
Host: stage-api.forhotel.eu
api-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 56
{
"room_type_id": 1,
"from": "2026-01-30",
"to": "2026-01-30"
}{
"ANY_ADDITIONAL_PROPERTY": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}