- Getting Started
- Fiat Collection
- Crypto Collection
- Common Collection
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
*/*
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