Create / Update Booking [HOTEL]
Booking NFT Creation Request
To make your first request, send an authenticated request to the endpoint. This will create a Booking NFT.
Take a look at how you might call this method using the technology of your choice:
collectionId
Id of the collection (takyon ID or the id from your database, you can set up your own ID from the Takyon Dashboard)
string
yes
owner
email of the first owner of the NFT
string
yes
originalPrice
price of the Booking
number
yes
images
List of images (links to your hosting or raw data of the image)
array of strings
no
lockDate
Lock date of the NFT (most likely 23:59 of the day before the checkin)
ISOdate as string
yes
guests
List of guests
array of guests (firstName, secondName, email)
no
lang
Language of customer
Enum: "en" or "it"
no
webhook
url string
no
payload.type
Type of the payload
"hotel"
yes
payload.reference
Reference of the booking
string
yes
payload.checkin
Booking check in date
ISOdate as string
yes
payload.checkout
Booking check out date
ISOdate as string
yes
payload.board
Board basis
Enum: "RO" (room only), "BNB" (breakfast), "HB" (half board), "FB" (full board), "AI" (all inclusive)
no
payload.rooms
List of booked rooms
array of rooms (name, guestsAdults, guestsKids, amenities)
no
payload.extra
List of extra information about the Booking
string
no
Keep note that the payload is customizable. We recommend using the structure provided in this example, but is possible to add information with custom keys or avoid some of the fields.
Update an existent booking
You can update a Booking NFT simply by calling the Create Endpoint and adding "id" as a parameter of the nftData. You'll get it in the response of the Create Endpoint, after the creation call, and you can store it in your systems. Alternatively, if you don't want to save the "_id" you can also use the same "payload.reference".
Last updated