List asset investments
GET/companies/:company-id/assets/:asset_id/investments
List asset investments
Request
Path Parameters
asset_id uuidrequired
Query Parameters
from string
to string
Responses
- 200
A JSON array of asset investments
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id uuidrequired
The unique identifier of the investment
label stringnullable
The label/name of the investment
unitPrice numbernullable
The price per unit
unitValue numbernullable
The current value per unit
quantity numbernullable
The number of units held
valuation numbernullable
The total valuation of the investment
instrument stringnullable
The type of investment instrument
category stringnullable
The investment category
subcategory stringnullable
The investment subcategory
managementCompany stringnullable
The company managing the investment
riskIndicator numbernullable
Risk indicator of the investment
sri numbernullable
Synthetic Risk Indicator
[
{
"id": "inv-123456-abcdef",
"label": "APPLE INC",
"unitPrice": 150.25,
"unitValue": 155.75,
"quantity": 100,
"valuation": 15575,
"instrument": "Stock",
"category": "Equity",
"subcategory": "Technology",
"managementCompany": "BlackRock",
"riskIndicator": 3,
"sri": 4
}
]
Loading...