Create a Section for a Life Stage for a Firm

POST /api/v1/expenditure-structure/section
application/json

Body Required

  • name string Required

    The name of the Expenditure Life Stage Section.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      uuid of the Expenditure Life Stage Section

    • name string

      The name of the Expenditure Life Stage Section. This is the name that will be displayed to the client.

    • position string

      The expected position of the Expenditure Life Stage Section in any listing of the Expenditure Life Stage Section. The first Expenditure Life Stage Section should have a position of 1, the second 2, etc.

    • fields object

      The fields associated with the Expenditure Life Stage Section.

      Hide fields attributes Show fields attributes object
      • uuid string
      • name string
      • section string
      • created_at string
      • updated_at string
    • created_at string

      timestamp of when the Expenditure was created

    • updated_at string

      timestamp of when the Expenditure was updated

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)
{
  "name": "House Keeping",
  "uuid": "be37c8cd-d751-4592-bbe9-88d1b8db0e6a",
  "fields": {
    "name": "Electricity",
    "uuid": "7174d078-9db0-4d8a-abb8-3f3db76c4032",
    "section": "Housekeeping Expenses",
    "created_at": "2025-06-26T11:37:01+01:00",
    "updated_at": "2025-06-26T11:37:01+01:00"
  },
  "position": "1",
  "created_at": "2023-06-16T15:25:06+01:00",
  "updated_at": "2023-06-16T15:25:06+01:00"
}