Payment-Gateway-OpenApi
  1. Common Collection
Payment-Gateway-OpenApi
  • Getting Started
  • Fiat Collection
    • Overview
    • Pelago Cashier Mode
      • Cashier Mode Introduction
      • Create Pelago Order
    • Pelago Direct Mode
      • Direct Mode Introduction
      • Get Rate
      • Get Product
      • Create Order
      • Get Order Info
      • Order Notify
  • Crypto Collection
    • Overview
    • Create Order
      POST
    • Refund
      POST
    • Withdraw
      POST
  • Common Collection
    • Check Order Info
      POST
  1. Common Collection

Check Order Info

POST
/openapi/merchant/checkOrderInfo

Request

Authorization
Body Params application/json
signature
string 
required
data
object 
required
pelagoOrderId
string 
required
merchantId
string 
required
orderAmount
number 
required
Example
{
    "signature": "string",
    "data": {
        "pelagoOrderId": "string",
        "merchantId": "string",
        "orderAmount": 0
    }
}

Request 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 'http://prod-cn.your-api-server.com/openapi/merchant/checkOrderInfo' \
--header 'Content-Type: application/json' \
--data-raw '{
    "signature": "string",
    "data": {
        "pelagoOrderId": "string",
        "merchantId": "string",
        "orderAmount": 0
    }
}'

Responses

🟢200成功
application/json
Body
isExist
boolean 
required
pelagoOrderId
string 
required
merchantId
string 
required
merchantName
string 
required
orderAmount
number 
required
orderCurrency
string 
required
paymentMethod
string 
required
orderTime
string 
required
Example
{
    "isExist": true,
    "pelagoOrderId": "string",
    "merchantId": "string",
    "merchantName": "string",
    "orderAmount": 0,
    "orderCurrency": "string",
    "paymentMethod": "string",
    "orderTime": "string"
}
Modified at 2025-06-26 07:02:05
Previous
Withdraw
Built with