Delete a sub account
Headers
-
Content-Type
string -
Accept
string
DELETE
/api/v1/plans/{plan_uuid}/sub-accounts/{id}
curl \
--request DELETE 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/id' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"name": "John's ISA",
"uuid": "ce2f8eab-aba0-48dc-90b4-ee21f43c3920",
"created_at": "2025-04-02T13:27:57+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-04-02T13:27:57+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "35852e94-a98a-41d2-9f08-dc7551a691b8",
"created_at": "2025-04-02T13:27:57+01:00",
"updated_at": "2025-04-02T13:27:57+01:00",
"is_proposed": true,
"proposed_at": "2025-04-02T00:00:00+01:00"
},
"latest_valuation": {
"uuid": "d53aa3a9-fec4-48ff-b639-00758511fdce",
"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-04-02T13:27:57+01:00",
"created_at": "2025-04-02T13:27:57+01:00",
"updated_at": "2025-04-02T13:27:57+01:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}