Query parameters
-
Comma separated list of relationships to include in the response. Valid relationships are [latest_valuation].
-
Filter by a comma separated list of UUIDs.
-
Field to sort by. Valid fields are [created_at, name]. Negative sign to denote DESC. Defaults to 'name'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/plans/{plan_uuid}/sub-accounts
curl \
--request GET 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/sub-accounts' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"name": "John's ISA",
"uuid": "31fece49-9437-4296-9a13-99ca0dab3000",
"created_at": "2025-10-24T10:34:19+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-10-24T10:34:19+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "1f8c9e05-4af1-4649-94f7-71721be9e962",
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"is_proposed": true,
"proposed_at": "2025-10-24T00:00:00+01:00"
},
"latest_valuation": {
"uuid": "5ee064ea-4148-4fbc-a25d-4c7eeb7ff18f",
"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-10-24T10:34:19+01:00",
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}
]
}