Infinia API
  1. Merchant
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
        POST
      • Merchant Query
        POST
      • Merchant Webhook
        POST
    • Beneficiary
      • Beneficiary Create
      • Beneficiary Update
      • Beneficiary Query
      • Beneficiary Delete
      • Beneficiary Webhook
    • 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. Merchant

Merchant Query

POST
/v1/channel/merchant/query
Returns the merchant associated with the provided merchant id, allowing for retrieval of basic information specific to that merchant.

Request

Body Params application/json

Example
{
    "merchantId": "445684d438564efea3b92a8d674d5516"
}

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/merchant/query' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantId": "445684d438564efea3b92a8d674d5516"
}'

Responses

🟢200
application/json
Body

Example
{
    "merchantId": "445684d438564efea3b92a8d674d5516",
    "name": "Hong Kong Technology Limited",
    "type": "ENTERPRISE",
    "certType": "COMPANY_REGISTRATION_CERTIFICATE",
    "certNo": "12345678",
    "country": "HK",
    "province": "Hong Kong",
    "city": "Hong Kong",
    "address": "Unit 1234, 12/F, Central Plaza, 18 Harbour Road, Wan Chai",
    "email": "info@hktech.com.hk",
    "mobile": "+85298765432",
    "remark": null,
    "status": "SUCCESS",
    "legals": [
        {
            "name": "CHAN TAI MAN",
            "type": "LEGALPERSON",
            "certType": "HONG_KONG_ID_CARD",
            "certNo": "A123456(7)",
            "country": "HK",
            "province": "Hong Kong",
            "city": "Hong Kong",
            "address": "Flat A, 15/F, Tower 1, Silvercord, 30 Canton Road, Tsim Sha Tsui"
        },
        {
            "name": "WONG SIU MING",
            "type": "UBO",
            "certType": "PASSPORT",
            "certNo": "HK1234567",
            "country": "HK",
            "province": "Hong Kong",
            "city": "Hong Kong",
            "address": "Room 888, 88/F, International Commerce Centre, 1 Austin Road West, Kowloon"
        }
    ]
}
Modified at 2025-12-22 05:37:34
Previous
Merchant SignUp
Next
Merchant Webhook
Built with