Webhook for Physical Card Transactions
Brief Description
Configuration and Use of Physical Card Consumption Notification Webhook:
- Contact us to configure your Webhook Endpoint URL in the backend. The URL must be HTTPS.
- When the order status changes, push the corresponding order message to your Webhook Endpoint URL.
- Upon receiving the Webhook message, if you return HTTP CODE 200, it indicates successful reception.
Return Parameter Description
| Parameter | Type | Description |
|---|---|---|
| string | ||
| no | string | Order number |
| cardId | string | Card ID |
| cardNumber | string | Card number |
| cardToken | string | Card token |
| holderId | string | Cardholder ID |
| currency | string | Currency |
| amount | string | Amount (EUR) |
| fee | string | Transaction fee |
| currencyTxn | string | Actual transaction currency |
| txnAmount | string | Actual transaction amount |
| businessDate | string | Business date(Time zone UTC+2) |
| tradeId | string | Transaction id |
| tradeSrc | string | Transaction type (A: Authorization, S: Settlement) |
| authCode | string | Authorization code |
| tradeType | int | Actual transaction currency (150: Pre-authorization, 151: Payment, etc.) |
| tradeStatus | int | Transaction status (1: Success, 2: Correction, etc.) |
| remark | string | Transaction merchant description |
Return Example
{
"email": "[email protected]",
"no": "1177095467041951744",
"cardId": "1179043877278191616",
"cardNumber": "5554748800472311",
"cardToken": "384768",
"holderId": "583822",
"authCode": "855861",
"businessDate": "2023-11-23 05:57:06",
"currency": "EUR",
"amount": "1.54",
"currencyTxn": "USD",
"fee": "0.60",
"remark": "MERCADOPAGO*RABIETA CAP.FEDERAL ARG",
"tradeId": "361958",
"tradeSrc": "A",
"tradeStatus": 1,
"tradeType": 151,
"txnAmount": "1"
}
Note
For more error codes, please refer to the error code description on the homepage.
Updated 11 months ago