PUT
/api/v1/document-pack/document-pack/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/document-pack/document-pack/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"Terms and Conditions","description":"Terms and Conditions for our services","is_template":true}'
Request examples
{
"name": "Terms and Conditions",
"description": "Terms and Conditions for our services",
"is_template": true
}
Response examples (200)
{
"data": [
{
"name": "John's ISA",
"uuid": "c60ee9a3-b380-430a-87d1-da0b9e4c4c1b",
"created_at": "2025-07-17T16:23:22+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-07-17T16:23:22+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": {
"name": "Risky Portfolio",
"uuid": "77265fda-f32b-4ad7-9c50-d13acf3fa06f",
"created_at": "2025-07-17T16:23:22+01:00",
"updated_at": "2025-07-17T16:23:22+01:00",
"is_proposed": true,
"proposed_at": "2025-07-17T00:00:00+01:00"
},
"latest_valuation": {
"uuid": "a7149b80-b43e-481c-9403-3d29092a83c4",
"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-07-17T16:23:22+01:00",
"created_at": "2025-07-17T16:23:22+01:00",
"updated_at": "2025-07-17T16:23:22+01:00",
"sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
}
}
]
}