Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get Current Weights
This request returns information on the securities and their current percentage weights for a folio in a member’s brokerage account.
Request URL
Syntax | GET /restapi/accounts/{accountnumber}/folios/{folionumber}/currentweights |
---|---|
Example URL | https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/folios/RA1234ABCD04/currentweights |
Response Data Fields
Field | Description |
---|---|
ticker | The symbol of the security in the folio requested. |
currentWeight | Represents the current percentage weight of a security in the folio. Note that the sum of the current weights will add up to 100%. |
Response Example
HTTP/1.1 200 OK
X-Powered-By: Servlet/2.5
Server: Sun GlassFish Enterprise Server v2.1.1
Location: https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/folios/RA1234ABCD03/currentWeights
Content-Type: application/json
Transfer-Encoding: chunked
Date: Sat, 05 July 2014 17:51:06 GMT
[
{
"currentWeight": "3.33",
"ticker": "AXP"
},
{
"currentWeight": "3.33",
"ticker": "BRGYY"
}
]