Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get Target Weights
This request returns information on the securities and their target percentage weights for a folio in a member’s brokerage account.
Syntax | GET /restapi/accounts/{accountnumber}/folios/{folionumber}/targetweights |
---|---|
Example URL | https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/folios/RA1234ABCD04/targetweights |
Response Data Fields
Field | Description |
---|---|
ticker | The symbol of the security in the folio requested. |
targetWeight | Represents the target percentage weight of a security in the folio. Note that the sum of the target weights should add up to 100% but may not due to various factors, including the sale or removal of a security from a folio. |
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/targetWeights
Content-Type: application/json
Transfer-Encoding: chunked
Date: Sat, 05 July 2014 17:51:06 GMT
[
{
"targetWeight": "3.33",
"ticker": "AXP"
},
{
"targetWeight": "3.33",
"ticker": "BRGYY"
}
]