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":"a3c62f12-750a-4fa9-b6a9-877c8acccdf0"}'
Request examples
{
"amount": 50000,
"life_stage_section_uuid": "a3c62f12-750a-4fa9-b6a9-877c8acccdf0"
}
Response examples (200)
[
{
"uuid": "2209a42b-d52a-44bb-8992-139747ea6830",
"created_at": "2026-07-20T09:57:23+01:00",
"updated_at": "2026-07-20T09:57:23+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": "d16746be-f37f-453b-8419-37d885093b03",
"life_stage_section_uuid": "188489f5-6cc0-41b4-9c13-2c6c66ec2880",
"life_stage_field_uuid": "d78ae6fa-cab8-4517-9756-d3146f2b36c0",
"accounts": "[]"
}
]