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":"1191b283-9434-495e-866f-7d12b08c8cf1"}'
Request examples
{
"name": "Johns ISA",
"policy_number": "AVF-4355432",
"proposal_reference": "BtMWiy0JwHtogU4",
"active_portfolio_uuid": "1191b283-9434-495e-866f-7d12b08c8cf1"
}
Response examples (200)
{
"name": "John's ISA",
"uuid": "0b8eaca2-face-48eb-b999-afa2412018d0",
"created_at": "2025-09-17T15:46:52+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-09-17T15:46:52+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "e76b4588-6f98-4f07-ad3a-c99d1e865d6d",
"created_at": "2025-09-17T15:46:52+01:00",
"updated_at": "2025-09-17T15:46:52+01:00",
"is_proposed": true,
"proposed_at": "2025-09-17T00:00:00+01:00"
},
"latest_valuation": {
"uuid": "a9bdf506-a516-4865-9f44-bfc28ace046d",
"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-09-17T15:46:52+01:00",
"created_at": "2025-09-17T15:46:52+01:00",
"updated_at": "2025-09-17T15:46:52+01:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}