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":"0b4111bb-3074-4b5b-a738-0465d01e1db2"}'
Request examples
{
"amount": 50000,
"life_stage_section_uuid": "0b4111bb-3074-4b5b-a738-0465d01e1db2"
}
Response examples (200)
{
"uuid": "8627af33-db99-4831-889c-05836cdb127a",
"created_at": "2026-05-20T13:55:08+01:00",
"updated_at": "2026-05-20T13:55:08+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": "6944a5e2-14c6-4a9c-8a9a-a9798d4a9d7f",
"life_stage_section_uuid": "1b90bd3a-80b9-450a-9a3a-edcff8915dda",
"life_stage_field_uuid": "a0ed3032-96c1-49a8-9ce7-07a6e12ca110",
"accounts": "[]"
}