Retrieve
GET/scenarios/:scenarioId/persons/:personId/assets/portfolio/:portfolioId
Provides information on a given portfolio belonging to a person from the specified scenario.
Request
Path Parameters
scenarioId stringrequired
The scenario's id
personId stringrequired
The person's id
portfolioId stringrequired
The asset's id
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
currency stringrequired
The currency of the portfolio. Valid currency code ISO-4217 from the list of supported currencies.
description string
Description of the resource.
fees doublerequired
The annual fees.
id string
The id of the resource.
name string
The name of the resource.
profile string
The risk profile of the portfolio.
properties object
Properties of the resource.
property name* object
Properties of the resource.
value numberrequired
The value of the portfolio.
wrapper stringrequired
The tax wrapper of the portfolio.
{
"currency": "GBP",
"description": "My resource's description",
"fees": 0.01,
"id": "1",
"name": "My resource",
"profile": "low",
"properties": {
"property_1": "Value of property 1",
"property_2": "Value of property 2"
},
"value": 70000,
"wrapper": "isa"
}
Not Found
Internal Server Error
Loading...