Headers
-
Content-Type
string -
Accept
string
Path parameters
-
plan_uuid
string Required
Body
Required
-
name
string Required Descriptive name of the sub account
-
policy_number
string Sub account policy number
-
proposal_reference
string Sub account proposal number
POST
/api/v1/plans/{plan_uuid}/sub-accounts
curl \
--request POST 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"name":"Johns ISA","policy_number":"AVF-4355432","proposal_reference":"BtMWiy0JwHtogU4"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Johns ISA",
"policy_number": "AVF-4355432",
"proposal_reference": "BtMWiy0JwHtogU4"
}
Response examples (200)
{
"name": "John's ISA",
"uuid": "f9527353-e0af-4706-8a79-d2aa27d3cf66",
"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": "42a7d735-e52d-49dd-820e-995bc26bd494",
"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": "db2ea4f1-b90e-4b0d-a923-3996cc5c1588",
"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"
}
}