Get all charge split schemas

GET /api/v1/charge-split-schema

Query parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/charge-split-schema
curl \
 -X GET https://api.plannrcrm.com/api/v1/charge-split-schema \
 -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)
{
  "data": [
    {
      "name": "Basic Introducer Rate",
      "uuid": "78d34529-b28d-4ead-a920-c90708d7b64e",
      "created_at": "2024-10-16T11:10:17+01:00",
      "updated_at": "2024-10-16T11:10:17+01:00",
      "max_percentage": 20,
      "min_percentage": 10,
      "default_initial": true,
      "default_ongoing": true,
      "valid_for_clients": true,
      "can_change_initial": true,
      "can_change_ongoing": true,
      "default_percentage": 15,
      "valid_for_advisers": true,
      "visible_to_advisers": true,
      "default_transfer_fci": true,
      "valid_for_introducers": true,
      "can_change_transfer_fci": true,
      "percentage_paid_by_firm": 25,
      "percentage_paid_by_adviser": 75
    }
  ]
}