Get Sections for Life Stages for a Firm

GET /api/v1/expenditure-structure/section

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • name string
      • position string
      • fields object
        Hide fields attributes Show fields attributes object
        • uuid string
        • name string
        • section string
        • created_at string
        • updated_at string
      • created_at string
      • updated_at string
GET /api/v1/expenditure-structure/section
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/expenditure-structure/section' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "House Keeping",
      "uuid": "be37c8cd-d751-4592-bbe9-88d1b8db0e6a",
      "fields": {
        "name": "Electricity",
        "uuid": "e65ce92e-7cb7-4ad8-8275-705a775b31b0",
        "section": "Housekeeping Expenses",
        "created_at": "2025-06-25T15:10:39+01:00",
        "updated_at": "2025-06-25T15:10:39+01:00"
      },
      "position": "1",
      "created_at": "2023-06-16T15:25:06+01:00",
      "updated_at": "2023-06-16T15:25:06+01:00"
    }
  ]
}