Infinia API
  1. Payment
Infinia API
  • Infinia E-commerce API
    • Introduction
    • API overview
    • Request and Response parameters
    • Encryption and Decryption
    • Account Binding
      • Account Binding
      • Account Binding Status Query
    • Trade Details
      • Trade details upload
      • Trade Details Upload Status Query
    • Query
      • Platform Account Balance Query
      • Seller's Available Revenue Share Query
    • Revenue Sharing
      • Revenue Sharing
      • Revenue Sharing Status Query
    • FX
      • Real-time rate
    • Webhook
      • Seller status notification
    • Appendix
      • System Code
      • Product types
      • CipherRsaUtil.java
      • Templates: Trade_details.csv
      • Templates: Trade_details_error_file(.csv)
      • Log
    • Schemas
      • Schemas
        • ErrorBody
        • AccountBindingRequestData
        • AccountBindingResponseData
        • AccountBindingQueryRequestData
        • AccountBindingQueryResponseData
        • TradeDetailsUploadStatusRequestData
        • TradeDetailsUploadStatusResponseData
        • AccountBalanceQueryRequestData
        • AccountBalanceQueryResponseData
        • AvailableRevenueQueryRequestData
        • AvailableRevenueQueryResponseData
        • RevenueSharingRequestData
        • RevenueSharingResponseData
        • RevenueSharingStatusQueryRequestData
        • RevenueSharingStatusQueryResponseData
  • Infinia Payment API
    • Merchant
      • Merchant SignUp
      • Merchant Query
      • Merchant Webhook
    • Beneficiary
      • Beneficiary Create
      • Beneficiary Update
      • Beneficiary Query
      • Beneficiary Delete
      • Beneficiary Webhook
    • Payment
      • Payment Quote
        POST
      • Payment Fund
        POST
      • Payment Query
        POST
      • Payment Webhook
        POST
    • Account
      • Account Balance
    • Schemas
      • com.gep.openapi.common.request.MerchantSignUpRequest.Legal
      • com.gep.openapi.common.response.MerchantSignUpResponse.Legal
      • com.gep.openapi.common.request.PaymentFundRequest.Beneficiary
      • com.gep.openapi.common.response.PaymentFundResponse.Beneficiary
      • com.gep.openapi.common.response.AccountQueryResponse.Balance
  1. Payment

Payment Fund

POST
/v1/channel/payment/fund
Fund payment.

Request

Body Params application/json

Examples
{
    "requestId": "903c036b-b8bf-4892-b134-d5316f6463e9",
    "externalId": "c66445aec4f94af0ac7246a0f77908e6",
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "pobo": true,
    "quoteId": "R20251219103309011160000002",
    "sourceCurrency": "CNH",
    "sourceAmount": 100,
    "destinationAmount": null,
    "beneficiaryId": "31d961772b964b489ff63bbed6306609",
    "remittanceInfo": null
}

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
curl --location --request POST '/v1/channel/payment/fund' \
--header 'Content-Type: application/json' \
--data-raw '{
    "requestId": "903c036b-b8bf-4892-b134-d5316f6463e9",
    "externalId": "c66445aec4f94af0ac7246a0f77908e6",
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "pobo": true,
    "quoteId": "R20251219103309011160000002",
    "sourceCurrency": "CNH",
    "sourceAmount": 100,
    "destinationAmount": null,
    "beneficiaryId": "31d961772b964b489ff63bbed6306609",
    "remittanceInfo": null
}'

Responses

🟢200
application/json
Body

Example
{
    "requestId": "903c036b-b8bf-4892-b134-d5316f6463e9",
    "paymentId": "O20251219103315011160000001",
    "externalId": "c66445aec4f94af0ac7246a0f77908e6",
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "sourceCurrency": "CNH",
    "sourceAmount": 100,
    "destinationCurrency": "USD",
    "destinationAmount": 14.07,
    "feeCurrency": "CNH",
    "feeAmount": 1,
    "receivedCurrency": "USD",
    "receivedAmount": 13.930,
    "fxRate": 0.1407991,
    "beneficiary": {
        "merchantId": "445684d438564efea3b92a8d674d5516",
        "type": "ENTERPRISE",
        "bankName": "HSBC Hong Kong",
        "bankAccount": "808-123456-001",
        "currency": "USD",
        "branchName": "HSBC Main Branch Central",
        "bankCountry": "HK",
        "bankAddress": "1 Queen's Road Central, Hong Kong",
        "routingType": "swift",
        "routingCode": "HSBCHKHHHKH",
        "payeeName": "HONG KONG TECHNOLOGY LTD",
        "payeeCountry": "HK",
        "payeeCity": "Hong Kong",
        "payeeAddress": "Unit 1501, 15/F, Central Plaza, 18 Harbour Road, Wan Chai",
        "payeePostalCode": "999077"
    },
    "finalizedTime": "NULL",
    "status": "INIT"
}
Modified at 2025-12-22 05:39:12
Previous
Payment Quote
Next
Payment Query
Built with