Update an adviser split

PUT /api/v1/adviser-split/{adviserSplit_uuid}
application/json

Body

Responses

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

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • name string

      The name of the adviser split

    • The percentage held by the firm on a charge

    • The percentage held by the selling adviser on a charge

    • type string

      Whether this adviser split is for an adviser or a plan charge

PUT /api/v1/adviser-split/{adviserSplit_uuid}
curl \
 -X PUT https://api.plannrcrm.com/api/v1/adviser-split/adviserSplit_uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 -d '{"name":"Trainee Rate","firm_percentage":30.0,"adviser_percentage":70.0}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "name": "Trainee Rate",
  "firm_percentage": 30.0,
  "adviser_percentage": 70.0
}
Response examples (200)
{
  "name": "Trainee Rate",
  "type": "adviser",
  "uuid": "56d38db1-97a8-428a-bf39-d49c63b8c910",
  "created_at": "2025-01-17T11:18:32+00:00",
  "updated_at": "2025-01-17T11:18:32+00:00",
  "firm_percentage": 30,
  "adviser_percentage": 30
}