Skip to content

Holdings

Holdings The Holdings API allows users to inquire about their broker-held long-term assets. To make such requests, it is essential to include proper authorization or a valid token with your API call.

Method: GET

{{SERVER_URL}}/api/V2/orders/holdings/

Headers

Content-Type Value
Authorization {{AUTH_TOKEN}}

Response: 200

{
    "code": 200,
    "description": "Success holding",
    "result": {
        "RMSHoldings": [
            {
                "transaction_type": 1,
                "id": "CT030",
                "isin": "INE092A01019",
                "total_qty": 27,
                "updated_by": "SUPERADMIN"
            },
            {
                "transaction_type": 1,
                "id": "CT030",
                "isin": "INE614G01033",
                "total_qty": 10,
                "updated_by": "SUPERADMIN"
            },
            {
                "transaction_type": 1,
                "id": "CT030",
                "isin": "INE012A01025",
                "total_qty": 10,
                "updated_by": "SUPERADMIN"
            }
        ],
        "clientId": "CT030"
    },
    "type": "success"
}