Webhook Triggers for Automated Processes
Simplify some operations, for example, an NFT transfer, royalties, or updating metadata, by creating webhook events that initiate given actions.
Endpoint: POST /api/webhooks/advanced
Request Body:
json
Copy code
{
"eventType": "NFT_TRANSFER",
"callbackUrl": "https://yourdomain.com/advanced-webhook",
"triggerActions": [
{
"action": "UpdateMetadata",
"actionData": {
"nftId": "{nftId}",
"newMetadata": {
"status": "Transferred"
}
}
}
]
}
Description: This allows for fully automated NFT-related processing to take place. For example, metadata can be changed every time an NFT is sold, or a new event can be initiated including sending a notification or altering royalties.
With those options included in TMINTER, you can expand the general framework of NFTs and tokens, and create sophisticated systems with individual economics and interactivity and multichain compatibility.
Last updated