Update an Expenditure Run in API Explorer
Ask AI
This endpoint creates an individual expenditure for a client.
POST
/api/v1/client/{client_uuid}/expenditure/{lifeStage_uuid}/custom/{expenditure_uuid}
curl \
--request POST 'https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/dcf0-484e-a0c5-08590fe89a84-f6aa1670/custom/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"amount":50000,"life_stage_section_uuid":"c97b6e08-0768-4347-8ee8-0da74f172028"}'
Request examples
{
"amount": 50000,
"life_stage_section_uuid": "c97b6e08-0768-4347-8ee8-0da74f172028"
}
Response examples (200)
{
"uuid": "f01a3a85-0a4b-4637-84b9-3a683cf7961d",
"created_at": "2026-06-29T13:21:55+01:00",
"updated_at": "2026-06-29T13:21:55+01:00",
"name": "Electricity",
"section": "Housekeeping Expenses",
"amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
}
},
"position": "1",
"life_stage_uuid": "9d83fa7c-4ed2-4137-8407-7937762e17ca",
"life_stage_section_uuid": "d19e8231-3d76-4c36-896d-475706dd1367",
"life_stage_field_uuid": "2c9625f9-99bb-49fe-ace5-02356e078dbf",
"accounts": "[]"
}