Infinia API
  1. Account Binding
Infinia API
  • Infinia E-commerce API
    • Introduction
    • API overview
    • Request and Response parameters
    • Encryption and Decryption
    • Account Binding
      • Account Binding
        POST
      • Account Binding Status Query
        POST
    • 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
    • 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
  1. Account Binding

Account Binding

POST
/v1/account-binding/request
Description:
The account binding API interface facilitates the initial linking of a seller's account on the e-commerce platform with the Infinia system. This interface is crucial for ensuring that all future transactions and financial activities are accurately attributed to the correct seller account. Use this interface to send the necessary seller details and initiate the binding process.
Version
1.0.0

Request

Body Params application/json

Example
{
    "requestNo": "ABR-20250903-0001",
    "sellerId": "SELLER-123456",
    "sellerCertNo": "91310108MA1KXXXXXX",
    "sellerName": "Acme Trading Ltd.",
    "storeName": "Acme Official Store",
    "storeUrl": "https://store.example.com/acme",
    "entityType": "Corporate",
    "country": "CHN",
    "currency": "CNH",
    "note": "First-time binding",
    "backlinkUrl": "https://merchant.example.com/seller/SELLER-123456"
}

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/account-binding/request' \
--header 'Content-Type: application/json' \
--data-raw '{
    "requestNo": "ABR-20250903-0001",
    "sellerId": "SELLER-123456",
    "sellerCertNo": "91310108MA1KXXXXXX",
    "sellerName": "Acme Trading Ltd.",
    "storeName": "Acme Official Store",
    "storeUrl": "https://store.example.com/acme",
    "entityType": "Corporate",
    "country": "CHN",
    "currency": "CNH",
    "note": "First-time binding",
    "backlinkUrl": "https://merchant.example.com/seller/SELLER-123456"
}'

Responses

🟢200成功
application/json
OK
Body

Example
{
    "status": "NONE",
    "requestNo": "string",
    "sellerId": "string",
    "redirectUrl": "string"
}
🟠400请求有误
🔴500服务器错误
Modified at 2025-09-09 08:32:16
Previous
Encryption and Decryption
Next
Account Binding Status Query
Built with