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 stringrequired
The label/name of the investment
unitPrice numberrequired
The price per unit
unitValue numberrequired
The current value per unit
quantity numberrequired
The number of units held
valuation numberrequired
The total valuation of the investment
instrument stringrequired
The type of investment instrument
category stringrequired
The investment category
subcategory stringrequired
The investment subcategory
managementCompany stringrequired
The company managing the investment
riskIndicator stringrequired
Risk indicator of the investment
sri stringrequired
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": "Moderate",
"sri": "4"
}
]
Loading...