Payment-Gateway-OpenApi
  1. Pelago Direct Mode
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
        POST
      • Get Product
        POST
      • Create Order
        POST
      • Get Order Info
        POST
      • Order Notify
        POST
  • Crypto Collection
    • Overview
    • Create Order
      POST
    • Refund
      POST
    • Withdraw
      POST
  • Common Collection
    • Check Order Info
      POST
  1. Pelago Direct Mode

Get Product

POST
/openapi/fiat/getPayProducts

Request

Authorization
Add parameter in header
Merchant-App-Key
Example:
Merchant-App-Key: ********************
Header Params
X-App-Key
string 
required
Body Params application/json
country
string 
required
Example
{
    "country": "string"
}

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/fiat/getPayProducts' \
--header 'X-App-Key;' \
--header 'Content-Type: application/json' \
--header 'Merchant-App-Key;' \
--data-raw '{
    "country": "string"
}'

Responses

🟢200OK
*/*
OK
Body
code
integer <int32>
optional
data
array[object (OpenApiMerchantProductResDTO) {3}] 
optional
productId
integer <int64>
optional
productName
string 
optional
returnUrl
string 
optional
msg
string 
optional
Example
{
    "code": 0,
    "data": [
        {
            "productId": 0,
            "productName": "string",
            "returnUrl": "string"
        }
    ],
    "msg": "string"
}
Modified at 2025-05-07 00:21:01
Previous
Get Rate
Next
Create Order
Built with