PUT
/api/v1/plans/{plan_uuid}/sub-accounts/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/sub-accounts/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"Johns ISA","policy_number":"AVF-4355432","proposal_reference":"BtMWiy0JwHtogU4","active_portfolio_uuid":"9e3efb31-d02c-49be-bc0d-ced8b228a1bd"}'
Request examples
{
"name": "Johns ISA",
"policy_number": "AVF-4355432",
"proposal_reference": "BtMWiy0JwHtogU4",
"active_portfolio_uuid": "9e3efb31-d02c-49be-bc0d-ced8b228a1bd"
}
Response examples (200)
{
"name": "John's ISA",
"uuid": "80cd0d69-7090-4efb-be41-d91cd87bc253",
"created_at": "2025-06-26T11:37:07+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-06-26T11:37:07+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "7636e8e8-830c-4989-9097-6d9c9b8a9750",
"created_at": "2025-06-26T11:37:07+01:00",
"updated_at": "2025-06-26T11:37:07+01:00",
"is_proposed": true,
"proposed_at": "2025-06-26T00:00:00+01:00"
},
"latest_valuation": {
"uuid": "7b9fc19d-fe19-4130-90b9-71a76aa5cbd3",
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"valued_at": "2025-06-26T11:37:07+01:00",
"created_at": "2025-06-26T11:37:07+01:00",
"updated_at": "2025-06-26T11:37:07+01:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}