Create a sub account Run in API Explorer
POST
/api/v1/plans/{plan_uuid}/sub-accounts
curl \
--request POST 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/sub-accounts' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"Johns ISA","policy_number":"AVF-4355432","proposal_reference":"BtMWiy0JwHtogU4"}'
Request examples
{
"name": "Johns ISA",
"policy_number": "AVF-4355432",
"proposal_reference": "BtMWiy0JwHtogU4"
}
Response examples (200)
{
"name": "John's ISA",
"uuid": "c8406c45-6455-4ec8-ac68-f0ad183efee9",
"created_at": "2025-11-17T21:14:40+00:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-11-17T21:14:40+00:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "bab0338e-cc2e-41de-a86f-1b65deaa03b3",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"is_proposed": true,
"proposed_at": "2025-11-17T00:00:00+00:00"
},
"latest_valuation": {
"uuid": "3eaa9e3d-d6aa-4442-bc42-5253f72569b6",
"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-11-17T21:14:40+00:00",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}