Request
Body Params application/json
{
"portfolio": {
"name": "string",
"type": "INDIVIDUAL"
}
}
Request Code Samples
curl --location --request PUT 'http://localhost:8100/portfolios/portfolios/' \
--header 'Content-Type: application/json' \
--data-raw '{
"portfolio": {
"name": "string",
"type": "INDIVIDUAL"
}
}'
Responses
{
"code": 0,
"result": {
"id": "string",
"name": "string",
"uid": "string",
"type": "INDIVIDUAL",
"createdAt": "string",
"updatedAt": "string"
},
"error": "string"
}
Modified at 2026-04-06 18:38:12