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. API Endpoints

Delete Payment

Overview

A QuickBuy Pro order can be deleted if it has a state of 'NOT_STARTED'. This refers to a transaction that has been created, but no payment action has been made. Once a order is deleted, the payment's URL will no longer be accessible.

  • Endpoint: /quickbuy/v1/delete

  • Method: DELETE

Request Query Parameter

  • OrderID: The OrderID, available when a payment is created, or via the retrieve payments endpoint.

Response Body Example (200 OK)

{
    "success": true,
    "message": "Order Deleted",
    "id": "66253fcf7788710a6063b66d"
}

Once you've received a successful response, indicated by "success": true, the payment is deleted.

Response Error Example (404 Bad Request)

{
    "success": false,
    "message": "Order not found."
}
PreviousRetrieve PaymentsNextCallbacks

Last updated 1 year ago