GET api/OrderManagement/GetAccountDetails?ClientNo={ClientNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| TotMktVal | decimal number |
None. |
|
| LiqPos | decimal number |
None. |
|
| BuyLimit | decimal number |
None. |
|
| TotInjAmt | decimal number |
None. |
|
| PfType | string |
None. |
|
| ProductName | string |
None. |
|
| CompanyName | string |
None. |
|
| BroCode | string |
None. |
|
| BroName | string |
None. |
|
| BalDate | date |
None. |
|
| StkPreference | integer |
None. |
|
| IsEPF | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotMktVal": 1.0,
"LiqPos": 2.0,
"BuyLimit": 3.0,
"TotInjAmt": 4.0,
"PfType": "sample string 5",
"ProductName": "sample string 6",
"CompanyName": "sample string 7",
"BroCode": "sample string 8",
"BroName": "sample string 9",
"BalDate": "2025-12-17T11:52:09.7462091+08:00",
"StkPreference": 11,
"IsEPF": true
}
application/xml, text/xml
Sample:
<AccountDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POEMSWEBAPI.Models.OrderManagement"> <BalDate>2025-12-17T11:52:09.7462091+08:00</BalDate> <BroCode>sample string 8</BroCode> <BroName>sample string 9</BroName> <BuyLimit>3</BuyLimit> <CompanyName>sample string 7</CompanyName> <IsEPF>true</IsEPF> <LiqPos>2</LiqPos> <PfType>sample string 5</PfType> <ProductName>sample string 6</ProductName> <StkPreference>11</StkPreference> <TotInjAmt>4</TotInjAmt> <TotMktVal>1</TotMktVal> </AccountDetails>