GET api/OrderManagement/GetLiquidityPositionRpt?ClientNo={ClientNo}&UserId={UserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientNo

string

Required

UserId

string

Required

Body Parameters

None.

Response Information

Resource Description

LiquidityPositionRpt
NameDescriptionTypeAdditional information
ClientNo

string

None.

BalDate

date

None.

OpBalance

decimal number

None.

AddDivAmt

decimal number

None.

AddIntAmt

decimal number

None.

AddCapInj

decimal number

None.

AddSaleCost

decimal number

None.

AddOthInc

decimal number

None.

LessBuyCost

decimal number

None.

LessRegFee

decimal number

None.

LessMgtFee

decimal number

None.

LessCapWith

decimal number

None.

LessOthExp

decimal number

None.

IncTax

decimal number

None.

LessCustFee

decimal number

None.

AddFeeAndCharges

decimal number

None.

LessFeeAndCharges

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "ClientNo": "sample string 1",
  "BalDate": "2024-11-21T17:44:13.9707695+08:00",
  "OpBalance": 3.0,
  "AddDivAmt": 4.0,
  "AddIntAmt": 5.0,
  "AddCapInj": 6.0,
  "AddSaleCost": 7.0,
  "AddOthInc": 8.0,
  "LessBuyCost": 9.0,
  "LessRegFee": 10.0,
  "LessMgtFee": 11.0,
  "LessCapWith": 12.0,
  "LessOthExp": 13.0,
  "IncTax": 14.0,
  "LessCustFee": 15.0,
  "AddFeeAndCharges": 16.0,
  "LessFeeAndCharges": 17.0
}

application/xml, text/xml

Sample:
<LiquidityPositionRpt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POEMSWEBAPI.Models.OrderManagement">
  <AddCapInj>6</AddCapInj>
  <AddDivAmt>4</AddDivAmt>
  <AddFeeAndCharges>16</AddFeeAndCharges>
  <AddIntAmt>5</AddIntAmt>
  <AddOthInc>8</AddOthInc>
  <AddSaleCost>7</AddSaleCost>
  <BalDate>2024-11-21T17:44:13.9707695+08:00</BalDate>
  <ClientNo>sample string 1</ClientNo>
  <IncTax>14</IncTax>
  <LessBuyCost>9</LessBuyCost>
  <LessCapWith>12</LessCapWith>
  <LessCustFee>15</LessCustFee>
  <LessFeeAndCharges>17</LessFeeAndCharges>
  <LessMgtFee>11</LessMgtFee>
  <LessOthExp>13</LessOthExp>
  <LessRegFee>10</LessRegFee>
  <OpBalance>3</OpBalance>
</LiquidityPositionRpt>