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":"c29014d1-3e23-4195-a2c3-083f5272b337"}'
Request examples
{
"amount": 50000,
"life_stage_section_uuid": "c29014d1-3e23-4195-a2c3-083f5272b337"
}
Response examples (200)
{
"uuid": "381f0077-4ccb-4746-87bd-53da79dac5e4",
"created_at": "2026-06-09T14:10:13+01:00",
"updated_at": "2026-06-09T14:10:13+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": "911ef8ee-dd06-4bf8-b268-9cc4d7cafd5f",
"life_stage_section_uuid": "69adda60-3406-4567-b1b8-16fd76d14eef",
"life_stage_field_uuid": "d8f4bb1e-163f-402a-95d4-565e673ce3fc",
"accounts": "[]"
}