Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter by valuations valued after a date.
-
Filter by valuations valued before a date.
-
Field to sort by. Valid fields are [valued_at]. Negative sign to denote DESC. Defaults to 'valued_at'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/plans/{plan_uuid}/valuations/{subAccount}
curl \
--request GET 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/valuations/{"value"=>"", "summary"=>"When the value is omitted"}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"uuid": "70a2b5de-be03-4e40-bb7e-50a19ca5c2e5",
"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:24+01:00",
"created_at": "2025-07-17T16:23:24+01:00",
"updated_at": "2025-07-17T16:23:24+01:00",
"sub_account": {
"name": "John's ISA",
"uuid": "8a6f887d-99ab-4bc4-8d6a-e076749904da",
"created_at": "2025-07-17T16:23:24+01:00",
"statistics": {
"recent_growth": 100
},
"updated_at": "2025-07-17T16:23:24+01:00",
"policy_number": "AVI-4837",
"is_main_account": false,
"active_portfolio": "App\\Http\\Resources\\Plans\\PortfolioResource",
"latest_valuation": "App\\Http\\Resources\\Plans\\ValuationResource"
}
}
]
}