Retreive Booking Updates
We provide you with two tools to get up-to-date information about your Booking NFTs: a GET Request (A) or a webhook (B) that sends you events about important changes to your bookings (e.g. change of owner).
You will then need this information to update your systems and only provide your users with up-to-date information.
We suggest in general to implement the webhook system (more secure) and to use GET calls when necessary.
A - Checking NFT Status & Ownership via GET Request
People will be able to sell and buy NFTs on our platform. To retrieve information about the current guests of the NFT use this endpoint
We suggest creating a daily batch job to gather updated information about the NFT, or check the guests of the NFT after the lockDate. Note that takyon will send an email when the NFTs locks.
When the NFT is "REDEEMED" the owner will not change anymore, but the guests might do. If the NFT is "OPEN" it can be traded. If the guests array is empty, you should use the email in the owner key.
B - Retrieving Events regarding the Booking in the Takyon Platform via Webhook
You can create your custom webhooks from the Takyon dashboard. Visit /account/developer. Takyon will call the webhook whenever some crucial changes to the booking will occur. The payload of the request's body will be encrypted using AES. You can find the secret decrypting key by visiting /account/developer. The request will be a JSON, the information you need to decrypt will be in the "data" key of the body of the request.
If you need help decrypting the data contact our support.
Decrypted Data
The decrypted data will have this structure. Note: If you set a Collection Alias, the payload will include the Collection Alias you set.
event
DELETE, UPDATE, CHANGE_GUESTS, RESELL
Type of the event
payload
object
Information about the booking
Last updated