Update a Field for a Life Stage Section for a Firm Run in API Explorer
Ask AI
PUT
/api/v1/expenditure-structure/field/{lifeStageField_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/expenditure-structure/field/dcf0-484e-a0c5-08590fe89a84-f6aa1670' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"name": "Electricity",
"life_stage_section_uuid": "b9bb1eab-e019-41bc-a52e-3066386a55de"
}'
Request examples
{
"name": "Electricity",
"life_stage_section_uuid": "b9bb1eab-e019-41bc-a52e-3066386a55de"
}
Response examples (200)
[
{
"uuid": "c859de1c-c359-489d-959d-e00ef130f7f9",
"name": "Electricity",
"section": "Housekeeping Expenses",
"created_at": "2026-09-17T15:10:58+01:00",
"updated_at": "2026-09-17T15:10:58+01:00"
}
]
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}