Show an individual Expenditure
This endpoint allows you to view an individual expenditure.
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
client_uuid
string Required The uuid of the client.
-
id
string Required The ID of the expenditure.
-
expenditure_uuid
string Required The uuid of the expenditure.
GET
/api/v1/client/{client_uuid}/expenditure/{id}
curl \
--request GET 'https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/id' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"name": "Electricity",
"uuid": "46aec99d-9c4a-4199-b4e5-0205ce71319d",
"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-05-14T18:27:12+01:00",
"updated_at": "2025-05-14T18:27:12+01:00",
"life_stage_uuid": "4e695d1d-40f2-49e7-9ced-5b20df3519d1",
"life_stage_field_uuid": "4398418e-0231-4265-a978-d1aeee5bffae",
"life_stage_section_uuid": "f83a6e2c-608c-4621-92f9-19fbd7661dde"
}