Create / Update Booking [RESTAURANT]
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 reservation)
ISOdate as string
yes
guests
List of guests
array of guests (firstName, secondName, email)
no
lang
Language of customer
Enum: "en" or "it"
no
payload.type
Type of the payload
"restaurant"
yes
payload.restaurant
Name of the Restaurant
string
no
payload.cuisine
Restaurant cousine
string
no
payload.email
Contact email of the Restaurant
string
no
payload.website
Website of the Restaurant
string
no
payload.note
Extra information about the Restaurant
string
no
payload.location
Location object from google API
Google Location Object
no
payload.reference
Reference of the reservation
string
yes
payload.reservationTime
Reservation time
ISOdate as string
yes
payload.tableType
Reservation table
string
no
payload.partySize
Number of guests
number
yes
payload.specialRequests
Guests requests
string
no
payload.occasion
Occasion of the reservation
string
no
payload.michelinStars
Michelin stars
number
no
payload.dressCode
Dress code
string
no
payload.parking
Parking info
string
no
payload.chefsSpecialties
Chef specialities
string
no
payload.wineList
Wine info
string
no
payload.extra
Extra information about the reservation
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