Get all expenditures including totals for a client
Response includes all expenditures for a client along with their calculated income and disposal income
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
client_uuid
string Required The uuid of the client.
Query parameters
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
GET
/api/v1/client/{client_uuid}/expenditure
curl \
--request GET 'https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "Electricity",
"uuid": "a6473990-9f9b-4268-862a-ce771064a925",
"amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"section": "Housekeeping Expenses",
"position": "1",
"created_at": "2025-04-02T13:27:55+01:00",
"updated_at": "2025-04-02T13:27:55+01:00",
"life_stage_uuid": "8516c2bb-34cd-4a34-9b0f-b14d95f1e9b3",
"life_stage_field_uuid": "c6149cc2-4769-44fa-8cf0-7d9f53c36083",
"life_stage_section_uuid": "c0e4b3b7-ca8b-428a-adb5-d538a06cc1f0"
}
]
}