Calculate the income splits of an expectation
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
Chargeable model type to run calculation on. Valid types are: client, plan
-
Chargeable model UUID to run calculation on.
-
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.
-
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 \
-X POST https://api.plannrcrm.com/api/v1/expectation/calculate \
-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 '{"chargeable_type":"plan","chargeable_uuid":"76a3eb74-feca-490a-9ace-0873c167fb30","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": "76a3eb74-feca-490a-9ace-0873c167fb30",
"amount": 12500,
"ongoing": false,
"tax_exempt": false,
"tax": 0.0
}