Create / Update Booking [EXPERIENCE]
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
"experience"
yes
payload.reference
Reference of the booking
string
yes
payload.category
Experience category
string
examples: "Tour in gondola", "Surfskate", "Wakesurf", "Snowshutte", "Enogastronomia", "Com'è fatto", "Chef experience", "A caccia del bello", "Amore", "Natura", "Adrenalina", "Artisti e artigiani", "Benessere", "VIP"
yes
payload.date
Experience date
ISOdate as string
yes
payload.duration
Experience duration in minutes
number
yes
payload.participants
Amount of participants
number
yes
payload.description
Experience description
string
yes
payload.tour
List of the steps of the experience
array of steps(step, name, location, date)
yes
payload.hostName
Name of the host of the experience
string
no
payload.hostDescription
Description of the host of the experience
string
no
payload.extra
Features of the experience. Divided by comma
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