GET api/InvestorRelation/Dashboard?investorId={investorId}
Gets investor relation dashboard. Stub response.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| investorId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Investor_Relation_Dashboard| Name | Description | Type | Additional information |
|---|---|---|---|
| Portfolio | decimal number |
None. |
|
| YTD | decimal number |
None. |
|
| ActiveStrategies | integer |
None. |
|
| PortfolioPerformance | decimal number |
None. |
|
| Funds_Dervisification | Collection of StrategyAllocation |
None. |
|
| Portfolio_Performance | Collection of PortfolioPerformance |
None. |
|
| Investor_Fees | Collection of CapitalCall |
None. |
Response Formats
application/json, text/json
Sample:
{
"Portfolio": 1.0,
"YTD": 2.0,
"ActiveStrategies": 3,
"PortfolioPerformance": 4.0,
"Funds_Dervisification": [
{
"FundName": "sample string 1",
"FundPercentage": 2.0
},
{
"FundName": "sample string 1",
"FundPercentage": 2.0
}
],
"Portfolio_Performance": [
{
"year": 1,
"month": 2,
"performance": 3.0
},
{
"year": 1,
"month": 2,
"performance": 3.0
}
],
"Investor_Fees": [
{
"timestamp": "2026-04-19T08:20:35.495807-05:00",
"amount": 2.0,
"description": "sample string 3"
},
{
"timestamp": "2026-04-19T08:20:35.495807-05:00",
"amount": 2.0,
"description": "sample string 3"
}
]
}