Calculate the income splits of an expectation
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Body
Required
-
chargeable_type
string Required Chargeable model type to run calculation on. Valid types are: client, plan
-
chargeable_uuid
string Required Chargeable model UUID to run calculation on.
-
amount
integer Required Expected net amount to calculate on in pennies.
-
ongoing
boolean Whether to run the calculation based on ongoing charges. Leave as false for initial charges. Defaults to false.
-
tax_exempt
boolean Denotes whether the net amount given is tax exempt or not. Defaults to true.
-
tax
number Required Custom tax rate to apply to the net amount. Defaults to firm setting or defaults to Plannr setting of 20%.
POST
/api/v1/expectation/calculate
curl \
--request POST 'https://api.plannrcrm.com/api/v1/expectation/calculate' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"chargeable_type":"plan","chargeable_uuid":"b73ccfa5-0aad-4d66-931e-8879cf015a97","amount":12500,"ongoing":false,"tax_exempt":false,"tax":0.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
{
"chargeable_type": "plan",
"chargeable_uuid": "b73ccfa5-0aad-4d66-931e-8879cf015a97",
"amount": 12500,
"ongoing": false,
"tax_exempt": false,
"tax": 0.0
}