Bamboo Invest · Schema
Portfolio breakdown response
InvestmentsStocksFractional SharesAfricaNigeriaPortfolio ManagementBrokerageFintech
Properties
| Name | Type | Description |
|---|---|---|
| withdrawable_cash | number | Maximum amount that can be withdrawn |
| value | number | Value of portfolio |
| total_return | number | Total return |
| total_percent_change | number | Total portfolio change |
| total_invested | number | Total invested |
| total_aum | number | Total AUM |
| restricted_by_dw | boolean | Restricted by DW |
| number_of_violations | number | Number of GFV for account |
| equity_value | number | Equity value |
| currency_symbol | string | Prices currency symbol |
| base_wallet_balance | number | Base wallet Balance |
| available_to_invest | number | Buying power |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.investbamboo.com/schemas/PortfolioBreakdownResponse",
"title": "Portfolio breakdown response",
"required": [
"available_to_invest",
"base_wallet_balance",
"currency_symbol",
"equity_value",
"number_of_violations",
"restricted_by_dw",
"total_aum",
"total_invested",
"total_percent_change",
"total_return",
"value",
"withdrawable_cash"
],
"type": "object",
"properties": {
"withdrawable_cash": {
"type": "number",
"description": "Maximum amount that can be withdrawn",
"example": 0
},
"value": {
"type": "number",
"description": "Value of portfolio",
"example": 0
},
"total_return": {
"type": "number",
"description": "Total return",
"example": 0
},
"total_percent_change": {
"type": "number",
"description": "Total portfolio change",
"example": 0
},
"total_invested": {
"type": "number",
"description": "Total invested",
"example": 0
},
"total_aum": {
"type": "number",
"description": "Total AUM",
"example": 0
},
"restricted_by_dw": {
"type": "boolean",
"description": "Restricted by DW",
"example": false
},
"number_of_violations": {
"type": "number",
"description": "Number of GFV for account",
"example": 0
},
"equity_value": {
"type": "number",
"description": "Equity value",
"example": 0
},
"currency_symbol": {
"type": "string",
"description": "Prices currency symbol",
"example": "$"
},
"base_wallet_balance": {
"type": "number",
"description": "Base wallet Balance",
"example": 0
},
"available_to_invest": {
"type": "number",
"description": "Buying power",
"example": 0
}
}
}