Update a valuation

PUT /api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/valuations/{uuid}

Path parameters

application/json

Body Required

  • value integer Required

    Money value of the valuation as an integer eg 4000 = £40.00

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
PUT /api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/valuations/{uuid}
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/subAccount_uuid/valuations/uuid' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"value":4000}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "value": 4000
}
Response examples (200)
{
  "uuid": "ff8c60fc-0331-415c-9fb9-6040398b5115",
  "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": {
    "name": "John's ISA",
    "uuid": "18b1d995-a1c7-469a-8629-c8a7f445f331",
    "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": "App\\Http\\Resources\\Plans\\PortfolioResource",
    "latest_valuation": "App\\Http\\Resources\\Plans\\ValuationResource"
  }
}