Update a sub account

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

Path parameters

application/json

Body

Responses

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

      UUID of the sub account

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was created.

    • name string

      Descriptive name of the sub account

    • Provider reference of the sub account

    • The latest valuation of the sub account

    • Denotes if the sub account a main account of the plan

    • The active portfolio of the sub account

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

PUT /api/v1/plans/{plan_uuid}/sub-accounts/{id}
curl \
 --request PUT 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/id' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"name":"Johns ISA","policy_number":"AVF-4355432","proposal_reference":"BtMWiy0JwHtogU4","active_portfolio_uuid":"30db3e0b-403e-406e-9d07-a5d23fff831e"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "name": "Johns ISA",
  "policy_number": "AVF-4355432",
  "proposal_reference": "BtMWiy0JwHtogU4",
  "active_portfolio_uuid": "30db3e0b-403e-406e-9d07-a5d23fff831e"
}
Response examples (200)
{
  "name": "John's ISA",
  "uuid": "dfa14b2e-3da0-4001-9c59-d65729cc4d1d",
  "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": {
    "name": "Risky Portfolio",
    "uuid": "e917f24f-cda5-4ce2-a2d5-daccf2663bf4",
    "created_at": "2025-04-02T13:27:57+01:00",
    "updated_at": "2025-04-02T13:27:57+01:00",
    "is_proposed": true,
    "proposed_at": "2025-04-02T00:00:00+01:00"
  },
  "latest_valuation": {
    "uuid": "86f6af83-40f6-49d3-94fe-acf9586c5b0c",
    "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": "App\\Http\\Resources\\Plans\\SubAccountResource"
  }
}