Create a Section for a Life Stage for a Firm Run in API Explorer
Ask AI
POST
/api/v1/expenditure-structure/section
curl \
--request POST 'https://api.plannrcrm.com/api/v1/expenditure-structure/section' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"name": "Current Lifestyle"
}'
Request examples
{
"name": "Current Lifestyle"
}
Response examples (200)
[
{
"uuid": "be37c8cd-d751-4592-bbe9-88d1b8db0e6a",
"name": "House Keeping",
"position": "1",
"fields": {
"uuid": "dec3b935-f034-4570-a633-e860ad97c304",
"name": "Electricity",
"section": "Housekeeping Expenses",
"created_at": "2026-09-17T15:10:58+01:00",
"updated_at": "2026-09-17T15:10:58+01:00"
},
"created_at": "2023-06-16T15:25:06+01:00",
"updated_at": "2023-06-16T15:25:06+01:00"
}
]
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}