PAYMENT.RECIEVED
This event is dispatched whenever a merchant receives payment.
{
"event": "payment.recieved",
"data": {
"transaction": {
"reference": "bq_E3kD7rWPc_TxlBkpt",
"merchant_name": "Testttt",
"payment_currency": null,
"payment_currency_name": null,
"payment_currency_slug": null,
"status": "INITIATED",
"customer_email": "[email protected]",
"customer_name": "Anonymous Customer",
"payment_amount": null,
"amount_paid": null,
"is_live": true,
"meta": {
"reference": "REF123123123123"
}
}
}
}
Field | Description | Type |
---|---|---|
event | The webhook event action that triggered the webhook | String |
data | All information related to this specific webhook. | Object |
data.transaction | All information related to the transaction is being carried out. | Object |
data.transaction.reference | Basqet transaction reference | String |
data.transaction.merchant_name | Basqet merchant name | String |
data.transaction.payment_currency | Transaction currency id | String |
data.transaction.payment_currency_slug | Transaction currency slug | String |
data.transaction.status | Transaction status ("INITIATED","PENDING","ABANDONED","SUCCESSFUL") | String |
data.transaction.payment_amount | Payment amount (Amount User was to pay) | String |
data.transaction.amount_paid | Amount Paid (Amount user sent to wallet address) | String |
Updated over 2 years ago