Get an adviser split

GET /api/v1/adviser-split/{adviserSplit_uuid}

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

GET /api/v1/adviser-split/{adviserSplit_uuid}
curl \
 -X GET 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}"
Response examples (200)
{
  "name": "Trainee Rate",
  "type": "adviser",
  "uuid": "5bb20885-5c57-4fb2-b02d-fd0d1855fa04",
  "created_at": "2024-10-16T11:10:17+01:00",
  "updated_at": "2024-10-16T11:10:17+01:00",
  "firm_percentage": 30,
  "adviser_percentage": 30
}