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 \
-X GET https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/id \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"name": "Electricity",
"uuid": "b4132860-8ac3-449d-8eb9-e5061778742d",
"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": "2024-11-20T13:24:00+00:00",
"updated_at": "2024-11-20T13:24:00+00:00",
"life_stage_uuid": "4e8e7b7b-0f28-4c59-a6e2-abb5a5f3bf74",
"life_stage_field_uuid": "be703271-5ed7-4a57-9c62-6e4bd488c991",
"life_stage_section_uuid": "d25d7acf-d148-4331-85e0-2303ecb69aba"
}