Ibanera Customer API
Customer Portal
  • Overview
  • Terminology
    • Exchanges of Assets
    • Payees
    • Personal Customers
    • Business Customers
      • Managees
    • Enumerations, Codes and Definitions
      • Source of Funds Types
      • Transfer Purpose Codes Reference
  • Getting Started
    • Access the API
    • API Principal Account
    • Common Response Format
    • First API Call
    • Authentication & Authorization
      • Generating a Time-Based One-Time Password (TOTP) with a Shared Secret
  • API Endpoints
    • Accounts
    • Business Onboarding
    • Cards
    • Crypto Exchanges
    • Foreign Currency Exchange
    • Payees (Beneficiaries)
    • Transfers
    • Transaction Cancellation
    • Managees
    • Information Requests (RFIs)
    • Quick Buy
    • Simulated Testing
  • Callbacks
    • Managee Jumio Completed
    • Cryptocurrency Transfers
    • Exchange Status Updated
    • Fiat Deposit Received
    • Managee Card Approval Updated
    • Managee KYC Updated
    • Transaction Status Updated
    • Information Requests
  • QuickBuy
    • QuickBuy Callback
    • QuickBuy Front End Implementation
    • Validating the Webhook Signature
    • QuickBuy Pro
      • Visual Customization
      • Getting Started / Authentication
      • API Endpoints
        • Create Payment
        • Retrieve Payments
        • Delete Payment
      • Callbacks
        • Payment Captured
        • Cryptocurrency Transferred
Powered by GitBook
On this page
  1. QuickBuy
  2. QuickBuy Pro
  3. Callbacks

Cryptocurrency Transferred

The Cryptocurrency Transferred callback is typically sent within 1-60 minutes from the time that a customer makes a card payment. This callback is triggered when the crypto currency purchase and transfer is completed, which finalizes a transaction.

Callback Example

{
    "OrderID": "662d7681909539441bf6b1ee",
    "status": "COMPLETED",
    "client": {
        "UserReference": "joe-test-00001x",
        "email": "joe@doe.com"
    },
    "fiat": {
        "amount": 40.95,
        "currency": "USD",
        "PaymentCardLast4Digits": "0007"
    },
    "crypto": {
        "asset": "dUSD",
        "amount": 35.95,
        "txHash": "4f3b365adb....."
    },
    "DateCreated": "2024-04-27T22:04:49.423Z",
    "DateCaptured": "2024-04-28T02:15:20.977Z",
    "DateTransfered": "2024-04-28T02:17:53.152Z"
}

Callback Header

Parameter
Example Value

Quickbuy-Signature

eO4HU1avkGpYpWf7eVzPYZGstCnnxdzytl3jUZ/tEiM="

PreviousPayment Captured

Last updated 1 year ago

Click here to learn more about validating the webhook signature.