Receiving and Acknowledging webhooks
To practice/simulate how webhooks will behave with your server/application, you can use the Test webhooks endpoint on the following page to receive sample webhooks to your endpoint from the test environment. This feature is not available in production.
You will receive data in the following format on your endpoint.
{
success: true,
data: {
paymentApproved: true,
paymentStatus: 'APPROVED',
nftStatus: 'PENDING',
txID: '223012',
orderTotal: 11.53,
mintHash: '',
mintDate: ''
}
}
{
success: false,
data: {
paymentApproved: false,
paymentStatus: 'DECLINED'
txID: "189827",
reason: "33-CARD EXPIRED"
}
}Last updated