Webhook for Orders
Brief Description
Order notification webhook configuration and usage
- Please contact the staff to configure your Webhook Endpoint Url. The Url must be HTTPS.
- When the order status changes, corresponding order messages will be pushed to your Webhook Endpoint Url.
- Upon receiving the Webhook message, if you return HTTP CODE 200, it means you have successfully received it.
Explanation of Return Parameters
| Parameter | Type | Description |
|---|---|---|
| orderNo | string | Order number |
| string | ||
| cardNumber | string | Card number |
| cardId | string | Card ID |
| cryptoAddress | string | Crypto wallet address |
| network | string | Network |
| orderType | string | 1: Create card 2: Recharge |
| cardType | string | 1: Virtual card 2: Physical card |
| orderAmount | string | Token order amount(count as USDT) |
| paymentAmount | string | User token payment(count as USDT) |
| cryptoCurrency | string | Digital currency type e.g., USDT; BTC; ETH |
| applyFee | string | Total card application fee in USDT |
| rechargeFee | string | Card recharge fee in USDT |
| voucherCode | string | Voucher code (returns empty if not used) |
| rechargeMarkup | string | Merchant recharge fee commission in USDT |
| deliveryFee | string | Delivery fee in USDT |
| cardAmount | string | Card amount, corresponding to card fiat currency |
| cardCurrency | string | Card currency e.g., EUR; |
| currencyExchangeRate | string | Exchange rate for fiat currency |
| cryptoCurrencyExchangeRate | string | Exchange rate for digital currency |
| orderTime | string | Order time |
| failReason | string | Failure reason |
| status | string | SUCCESS: Success FAIL: Fail (User paid and fail) CANCEL: Cancel (User did not pay and overtime) |
| shippingInfo | string | User shipping information including: address, city, country, firstName, lastName, phoneCountryCode, phoneNumber, roomNumber, state |
Return Example
{
"applyFee": "26.63285",
"cardAmount": "0",
"cardCurrency": "EUR",
"cardId": "pre1002171381234501427",
"cardNumber": "",
"cardType": "2",
"cryptoAddress": "0x9d5086adc54bb11234567ca9b694ca3a7",
"cryptoCurrency": "USDT",
"cryptoCurrencyExchangeRate": "1",
"currencyExchangeRate": "1.065314",
"deliveryFee": "0",
"email": "18********[email protected]",
"failReason": "",
"network": "BSC",
"orderAmount": "26.64",
"orderNo": "10021234567427",
"orderTime": "2024-04-23 18:53:41",
"orderType": "1",
"paymentAmount": "26.64",
"rechargeFee": "0",
"rechargeMarkup": "0",
"shippingInfo": {
"address": "7-3, Block X, XXXX 2C, XXXXXXXXX Road, XXXXXXXX District, Beijing City.",
"city": "beijing",
"country": "CN",
"firstName": "XXXXXXXI",
"lastName": "XXXXXXX",
"phoneCountryCode": "86",
"phoneNumber": "18123456782",
"roomNumber": "7-3",
"state": "beijingshi"
},
"status": "SUCCESS",
"voucherCode": ""
}
Note
For more error codes, please refer to the error code description on the homepage.
Updated 24 days ago