NTAK
Reservation

NTAK Reservation event

On this page, we will explore the process of programmatically constructing the NTAK reservation report. We will delve into the steps and techniques required to build the report dynamically through code.

Send this report, when a reservation is created in your PMS, or when a reservation is modified.

Request

POST/v1/accommodations/{accommodation}/reports/ntak/reservation
curl -X POST https://api.ntak.guru/v1/accommodations/99845d23-7ffb-4267-85ef-c8d4ac70e46a/reports/ntak/reservation \
  -H "Authorization: Bearer {token}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"arrival":"2022-06-15","departure":"2022-06-17","cancelled":false,"guestCount":2,"reservationNumber":34478,"marketSegment":"vacation_individual","reservedAt":"2022-06-02 13:24:32","occurredAt":"2022-06-02 13:24:32","salesChannel":"directly_online","grossAmount":286.2,"nationality":"HU","bookedResidentialUnits":[{"type":"economy","capacity":2}]}'

URL Parameters

NameDescription
accommodationThe accommodation id

Request body

arrival

TypeFormatDescriptionRequired
stringY-m-dArrival date of the reservation.Yes

departure

TypeFormatDescriptionRequired
stringY-m-dDeparture date of the reservation.Yes

cancelled

TypeDescriptionRequired
booleanIs the reservation cancelled?Yes

guestCount

TypeDescriptionRequired
numberNumber of guests in the reservation. Minimum 1 guest.Yes

reservationNumber

TypeDescriptionRequired
string | numberThe unique identifier of the reservation.Yes

marketSegment

TypeDescriptionRequired
Market segmentMarket segment of the reservation.Yes

reservedAt

TypeFormatDescriptionRequired
stringY-m-d H:i:s UTCDate of the reservation.Yes

occurredAt

TypeFormatDescriptionRequired
stringY-m-d H:i:s UTCDate of the event.Yes

salesChannel

TypeDescriptionRequired
Sales channelSales channel of the reservation.Yes

grossAmount

TypeDescriptionRequired
numberGross amount of the reservation.Yes
⚠️

This value must be converted to HUF.

nationality

TypeDescriptionRequired
stringThe ISO 3166-1 alpha-2 (opens in a new tab) code of the booking person, or otherYes

If the country code does not included in the official list, NTAK.guru will transform it to other.

bookedResidentialUnits

TypeDescriptionRequired
object[]List of booked residential units.Yes
  • bookedResidentialUnits.*.type

    TypeDescriptionRequired
    Residential unit typeType of the residential unit.Yes
  • bookedResidentialUnits.*.capacity

    TypeDescriptionRequired
    numberCapacity of the residential unit.Yes
{
  "arrival": "2022-06-15",
  "departure": "2022-06-17",
  "cancelled": false,
  "guestCount": 2,
  "reservationNumber": 34478,
  "marketSegment": "vacation_individual",
  "reservedAt": "2022-06-02 13:24:32",
  "occurredAt": "2022-06-02 13:24:32",
  "salesChannel": "directly_online",
  "grossAmount": 286.2,
  "nationality": "HU",
  "bookedResidentialUnits": [
    {
      "type": "economy",
      "capacity": 2
    }
  ]
}
 

Response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "messageId": "00000000-0000-0000-0000-000000000000",
  "service": "ntak",
  "status": "peding",
  "reason": "Report arrived from PMS",
  "type": "check_in",
  "context": {
    "arrival": "2022-06-15",
    "departure": "2022-06-17",
    "cancelled": false,
    "guestCount": 2,
    "reservationNumber": 34478,
    "marketSegment": "vacation_individual",
    "reservedAt": "2022-06-02 13:24:32",
    "occurredAt": "2022-06-02 13:24:32",
    "salesChannel": "directly_online",
    "grossAmount": 286.2,
    "nationality": "HU",
    "bookedResidentialUnits": [
      {
        "type": "economy",
        "capacity": 2
      }
    ]
  },
  "response": {
    "foglalasEsemenyResponse": []
  },
  "createdAt": "2024-03-26T12:53:12+00:00",
  "updatedAt": "2024-03-26T12:53:20+00:00"
}