transaction.refund

When it fires A successful transaction has been refunded.

Typical use

  • Mark order as REFUNDED or CANCELLED

  • Restore inventory if necessary

  • Update financial records

Example:

{
  "event": "transaction.refund",
  "timestamp": "2024-01-16T09:00:00.000Z",
  "data": {
    "transactionId": "64abc123def456789012351",
    "linkCode": "abc123xyz7",
    "customOrderId": "ORDER-123456",
    "amount": "100",
    "currency": "USDC",
    "sender": "0x123...",
    "receiver": "0x8356D265646a397b2Dacf0e05A4973E7676597f4",
    "status": "refunded",
    "settlementAmount": "100"
  }
}

Last updated

Was this helpful?