BPN OpenAPI
  1. BPN Transactions
BPN OpenAPI
  • Getting Started
    • Introduction to BPN
    • Key Concepts & Terminology
    • Architecture Overview
  • Onboarding & Prerequisites
    • Product Demo
    • Sandbox & Test Environment
  • Use Case
    • Transfer
    • Vault
    • On/Off Ramp
    • Compliance (Travel Rule Information Submission)
    • Fiat Collection(BRL PIX for example)
  • API Reference
    • KYB
      • Share KYB Info For Sub User
      • Get KYB Sub User Status
    • Account Management
      • add bank account
      • list bank account
      • create virtaul account
      • list virtual account
      • Master VA balance inquiry
      • list virtual account orders
      • refund virtual account order
    • Wallet
      • Get Asset Balance
      • Get Deposit Address
      • Add Deposit Sender
      • Add Withdraw Whitelist
      • Delete Withdraw Whiltelist
      • Request Withdraw
      • Query Transaction History
    • FX
      • fx inquery
    • BPN Transactions
      • get stablecoin quote
        GET
      • create stable order
        POST
      • get order (single) detail
        GET
      • list orders(batch)
        GET
    • Reconciliation
  • Webhooks & Event
    • resend fail webhook
      POST
    • Open Virtual Account Status
      POST
    • virtual account payment status
      POST
    • Transaction Status Notification
      POST
    • KYB Status Notification
      POST
    • Deposit Sender Detail Required
      POST
  • Appendix
    • Enum
    • Virtual Account(VA) Support List
  • Release Notes & Changelog
    • Version History
    • Version History
  • Schemas
    • walletBalance
    • walletAddress
    • transactionRecord
  1. BPN Transactions

create stable order

POST
/v1/stable/create-order
Description
The Create Order API is used to initiate a customer order with a specified stablecoin amount.
This API ensures that the merchant’s order ID is linked with the order generated on our platform.
Once the order is successfully created, the response will provide both the merchant’s order ID and our system’s order ID, along with a redirection link to proceed with the payment process.

Request

Body Params application/json

Example
{
    "merchantOrderId": "string",
    "quoteId": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/stable/create-order' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantOrderId": "string",
    "quoteId": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "code": "string",
    "message": "string",
    "data": {
        "merchantOrderId": "string",
        "orderId": "string",
        "orderStatus": "string"
    }
}
Previous
get stablecoin quote
Next
get order (single) detail
Built with