Update an adviser split
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body
-
name string
The name of the adviser split
-
firm_percentage number
The percentage held by the firm on a charge
-
adviser_percentage number
The percentage held by the selling adviser on a 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": "c442afc6-f90c-4275-b2a3-59f3f8981d67",
"created_at": "2024-12-03T16:50:35+00:00",
"updated_at": "2024-12-03T16:50:35+00:00",
"firm_percentage": 30,
"adviser_percentage": 30
}