Holding Details

The Holding Update PayOut API endpoint processes a request to update payout details for a specified holding by ISIN ID, and it returns the updated holding quantities and status. This ensures accurate tracking of holding quantities post-update.

Endpoint

Base URL
https://connects.torusdigital.com/api/v1/holdings/details    

Header Parameters

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Request Parameter

ParameterValueMandatoryDescription

source

A

Y

Source of the request (e.g., "A")

ISIN_id

ISIN356566777

Y

ISIN CODE

Request

cURL
curl --location 'https://connects.torusdigital.com/api/v1/holdings/details' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
    "source": "A",
    "data": {
        "ISIN_id": "INE669E01016"
    }
}'

Response

{
    "status": "success",
    "message": "Success",
    "data": [
        {
            "Nse_Script_Code": "NA",
            "Sum_Of_Holding_Qty": "0",
            "BSE_Series": "NA",
            "NSE_Symbol": "NA",
            "BSE_Script_Code": "NA",
            "COST_PRICE": "NA",
            "Utilized_Qty": "0",
            "Remaining_Qty": "0",
            "BSE_Symbol": "NA",
            "NSE_Series": "NA"
        }
    ]
}

Response Parameter

FieldExplanation

Nse_Script_Code

The script code of the holding on the National Stock Exchange (NSE). NA indicates not applicable or not available.

Sum_Of_Holding_Qty

Total quantity of the holding.

BSE_Series

The series of the holding on the Bombay Stock Exchange (BSE). NA indicates not applicable or not available.

NSE_Symbol

The symbol of the holding on the National Stock Exchange (NSE). NA indicates not applicable or not available.

BSE_Script_Code

The script code of the holding on the Bombay Stock Exchange (BSE). NA indicates not applicable or not available.

COST_PRICE

The cost price of the holding. NA indicates not applicable or not available.

Utilized_Qty

Quantity of the holding that has been utilized.

Remaining_Qty

Remaining quantity of the holding.

BSE_Symbol

The symbol of the holding on the Bombay Stock Exchange (BSE). NA indicates not applicable or not available.

NSE_Series

The series of the holding on the National Stock Exchange (NSE). NA indicates not applicable or not available.

Last updated