Update a valuation Run in API Explorer
Ask AI
PUT
/api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/valuations/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/sub-accounts/6ff8f7f6-1eb3-3525-be4a-3932c805afed/valuations/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"value":4000}'
Request examples
{
"value": 4000
}
Response examples (200)
[
{
"uuid": "ab4a658d-2842-4066-98c6-cd19bf2f194e",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"valued_at": "2026-04-29T16:54:31+01:00",
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"sub_account": {
"uuid": "6eb52e5a-5d2a-441d-b209-3817e10a9fc3",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"name": "John's ISA",
"policy_number": "AVI-4837",
"latest_valuation": "App\\Http\\Resources\\Plans\\ValuationResource",
"is_main_account": false,
"active_portfolio": "App\\Http\\Resources\\Plans\\PortfolioResource",
"statistics": {
"recent_growth": 100
}
}
}
]