Infinia API
  1. Beneficiary
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
        POST
      • Beneficiary Update
        POST
      • Beneficiary Query
        POST
      • Beneficiary Delete
        POST
      • Beneficiary Webhook
        POST
    • Payment
      • Payment Quote
      • Payment Fund
      • Payment Query
      • Payment Webhook
    • 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. Beneficiary

Beneficiary Query

POST
/v1/channel/beneficiary/query
Query beneficiary information.Returns the beneficiary associated with the provided Beneficiary ID

Request

Body Params application/json

Example
{
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "beneficiaryId": "31d961772b964b489ff63bbed6306609"
}

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/channel/beneficiary/query' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "beneficiaryId": "31d961772b964b489ff63bbed6306609"
}'

Responses

🟢200
application/json
Body

Example
{
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "beneficiaryId": "31d961772b964b489ff63bbed6306609",
    "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",
    "remark": null,
    "status": "SUCCESS"
}
Modified at 2025-12-22 05:38:57
Previous
Beneficiary Update
Next
Beneficiary Delete
Built with