Create an adviser split Run in API Explorer
Body
Required
-
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
-
Valid types are 'plan' or 'adviser'. Whether or not this adviser split will be assigned directly to an adviser, or at a plan level to override the selling adviser's adviser split.
POST
/api/v1/adviser-split
curl \
--request POST 'https://api.plannrcrm.com/api/v1/adviser-split' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Trainee Rate","firm_percentage":30.0,"adviser_percentage":70.0,"type":"plan"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Trainee Rate",
"firm_percentage": 30.0,
"adviser_percentage": 70.0,
"type": "plan"
}
Response examples (201)
{
"name": "Trainee Rate",
"type": "adviser",
"uuid": "596d3e1f-1d17-4686-86e3-bec83ecef62f",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"firm_percentage": 30,
"adviser_percentage": 30
}