NTAK objects

NTAK objects

On this page, you can access the reusable objects for NTAK reports. These objects are designed to be used across different reports in the NTAK system, providing consistency and reusability of data structures.

Expense

The expenditure is a gross item paid by the guest without VAT, the amount and type of which the NTAK system takes into account. It must be sent to the PMS interface on the date of issue of the invoice.

Multiple spends and multiple debits can be sent for one guest night.

It is possible that a charge appears in the system as a spend on the same day. This is not a problem, it should be sent as a separate item to the PMS interface.

date

TypeFormatRequired
datetimeY-m-d H:i:sYes

amount

TypeFormatRequired
numberYes
⚠️

The amount must be converted to HUF currency by the PMS!

paymentOption

TypeFormatRequired
enumPayment OptionsYes

paymentOptionSubtype

TypeFormatRequired
enumPayment Option SubtypesRequired when paymentOption is szep.
{
  "date": "2023-04-14 14:50:23",
  "amount": 13500,
  "paymentOption": "szep",
  "paymentOptionSubtype": "hospitality"
}

Load

Gross amount with VAT rate and service category charged to the guest's account for a service. It must be sent to the PMS interface on the day the product or service is recorded.

The value of the accommodation fee and IFA booked for the given day is also considered a charge.

date

TypeFormatRequired
datetimeY-m-d H:i:sYes

amount

TypeFormatRequired
numberYes
⚠️

The amount must be converted to HUF currency by the PMS!

category

TypeFormatRequired
enumCharge Item CategoryYes

isTouristTax

TypeFormatRequired
booleanYes

taxPercentage

TypeFormatRequired
numberYes
{
  "date": "2023-04-14 14:52:04",
  "amount": 890,
  "category": "drink",
  "isTouristTax": false,
  "taxPercentage": 21
}

Guest

gender

TypeFormatRequired
enumGenderYes

guestNumber

The unique identifier of the guest.

TypeFormatRequired
string or numberYes

touristTaxStatus

TypeFormatRequired
enumTourist TaxYes

yearOfBirth

TypeFormatRequired
number>1900Yes

residenceCountryCode

TypeFormatRequired
stringISO 3166-1 alpha-2 (opens in a new tab) or otherYes

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

residencePostCode

TypeFormatRequired
stringYes

nationalityCountryCode

TypeFormatRequired
stringISO 3166-1 alpha-2 (opens in a new tab) or otherYes

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

{
  "gender": "male",
  "guestNumber": "00000000-0000-0000-0000-000000000000",
  "touristTaxStatus": "obliged",
  "yearOfBirth": 1957,
  "residenceCountryCode": "HU",
  "residencePostCode": "04070",
  "nationalityCountryCode": "HU"
}

Residential unit

type

TypeFormatRequired
enumResidential Unit TypesYes

building

TypeFormatRequired
string or numberYes

If your PMS does not handle buildings, we recommend using the letter "a" as value.

number

TypeFormatRequired
string or numberYes

Name of the room. For example the room number.

trundleBedCount

TypeFormatRequired
number>=0Yes

singleBedCount

TypeFormatRequired
number>=0Yes

doubleBedCount

TypeFormatRequired
number>=0Yes
{
  "type": "standard",
  "building": "a",
  "number": "402",
  "trundleBedCount": 0,
  "singleBedCount": 0,
  "doubleBedCount": 1
}