Update a sub account

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

Path parameters

  • plan_uuid string Required
  • uuid string Required
application/json

Body

  • name string

    Descriptive name of the sub account

  • policy_number string

    Sub account policy number

  • proposal_reference string

    Sub account proposal number

  • active_portfolio_uuid string

    The active portfolio UUID of the sub-account.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      UUID of the sub account

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was created.

    • name string

      Descriptive name of the sub account

    • policy_number string

      Provider reference of the sub account

    • latest_valuation object

      The latest valuation of the sub account

      Hide latest_valuation attributes Show latest_valuation attributes object
      • uuid string
      • created_at string
      • updated_at string
      • valued_at string
      • value object
        Hide value attributes Show value attributes object
        • amount object
          Hide amount attributes Show amount attributes object
          • example string
          • description string
        • formatted object
          Hide formatted attributes Show formatted attributes object
          • example string
          • description string
        • currency object
          Hide currency attributes Show currency attributes object
          • example string
          • description string
      • sub_account string
    • is_main_account boolean

      Denotes if the sub account a main account of the plan

    • active_portfolio object

      The active portfolio of the sub account

      Hide active_portfolio attributes Show active_portfolio attributes object
      • uuid string
      • created_at string
      • updated_at string
      • is_proposed boolean
      • proposed_at string
      • name string
    • statistics object

      The statistics on a sub account. Only displayed when you retrieve an individual sub-account.

      Hide statistics attribute Show statistics attribute object
      • recent_growth integer
PUT /api/v1/plans/{plan_uuid}/sub-accounts/{uuid}
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/sub-accounts/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"Johns ISA","policy_number":"AVF-4355432","proposal_reference":"BtMWiy0JwHtogU4","active_portfolio_uuid":"9e3efb31-d02c-49be-bc0d-ced8b228a1bd"}'
Request examples
{
  "name": "Johns ISA",
  "policy_number": "AVF-4355432",
  "proposal_reference": "BtMWiy0JwHtogU4",
  "active_portfolio_uuid": "9e3efb31-d02c-49be-bc0d-ced8b228a1bd"
}
Response examples (200)
{
  "name": "John's ISA",
  "uuid": "80cd0d69-7090-4efb-be41-d91cd87bc253",
  "created_at": "2025-06-26T11:37:07+01:00",
  "statistics": {
    "recent_growth": 100
  },
  "updated_at": "2025-06-26T11:37:07+01:00",
  "policy_number": "AVI-4837",
  "is_main_account": false,
  "active_portfolio": {
    "name": "Risky Portfolio",
    "uuid": "7636e8e8-830c-4989-9097-6d9c9b8a9750",
    "created_at": "2025-06-26T11:37:07+01:00",
    "updated_at": "2025-06-26T11:37:07+01:00",
    "is_proposed": true,
    "proposed_at": "2025-06-26T00:00:00+01:00"
  },
  "latest_valuation": {
    "uuid": "7b9fc19d-fe19-4130-90b9-71a76aa5cbd3",
    "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-06-26T11:37:07+01:00",
    "created_at": "2025-06-26T11:37:07+01:00",
    "updated_at": "2025-06-26T11:37:07+01:00",
    "sub_account": "App\\Http\\Resources\\Plans\\SubAccountResource"
  }
}