Show an individual Expenditure
This endpoint allows you to view an individual expenditure.
Headers
-
Content-Type string
-
Accept string
Path parameters
-
The uuid of the client.
-
The ID of the expenditure.
-
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": "b0203165-51f3-4930-b3e0-00867304e0f8",
"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-02-20T10:13:01+00:00",
"updated_at": "2025-02-20T10:13:01+00:00",
"life_stage_uuid": "fcee5a14-c013-4035-a324-2aa999b8f63e",
"life_stage_field_uuid": "50d3c2d9-b749-4f5f-a9f2-582f7d435a5c",
"life_stage_section_uuid": "29d352f5-874c-468d-85cc-cabd0551254b"
}