Creates a new portfolio for the current user.
Request
Add parameter in header Authorization
Example:Authorization: ********************
or
Body Params application/json-patch+json
{
"name": "My Portfolio",
"baseCurrencyCode": "AUD",
"settings": {
"taxEntityType": "individual",
"endOfFinancialYear": "06-30",
"enableCorporateActionAutomation": true,
"enableDividendAutomation": true
}
}
Request Code Samples
curl --location --request POST '/v1/portfolios' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--data-raw '{
"name": "My Portfolio",
"baseCurrencyCode": "AUD",
"settings": {
"taxEntityType": "individual",
"endOfFinancialYear": "06-30",
"enableCorporateActionAutomation": true,
"enableDividendAutomation": true
}
}'
Responses
This response does not have a body.
Modified at 2025-10-24 04:35:20