Query Linked Accounts Info
API Description
Query Linked Accounts Info
HTTP Request
POST /bapi/ekyc/v2/public/ekyc/customer/query-linked-accounts
Request Header
Name | Type | Mandatory | Description |
---|---|---|---|
X-SHA2-Signature | STRING | YES | Request Signature |
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
bizEntityKey | STRING | YES | business entity key, each access entity has its own bizEntityKey |
entityCustomerId | STRING | YES | customer id, that is, the user id of the access entity site. Not Required for Oauth Link |
brokerMainAccountId | STRING | YES | Broker main account id |
openId | STRING | NO | Required for Oauth Link |
oauthClientId | STRING | NO | Required for Oauth Link |
Response Fields
Name | Type | Mandatory | Description |
---|---|---|---|
code | STRING | YES | |
data | LinkedBrokerAccountsResponse | NO |
LinkedBrokerAccountsResponse
Name | Type | Description |
---|---|---|
accountList | List<BrokerAccountInfoVo> | Linked accounts info |
BrokerAccountInfoVo
Name | Type | Description |
---|---|---|
brokerMainAccountId | STRING | Broker main account id |
brokerSubAccountId | STRING | Broker sub account id |
Request Body Example
{
"bizEntityKey": "BROKERKEY",
"entityCustomerId": "45712345678999212345",
"requestNo": "123456"
}
Response Example
{
"code": "000000",
"message": null,
"messageDetail": null,
"data": {
"accountList": [
{
"brokerMainAccountId": "123456789",
"brokerSubAccountId": "45712345678999212345"
}
]
},
"success": true
}