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

        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

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": "e0b575a6-264c-42c1-bd38-1fa9f004677d",
        "section": "Housekeeping Expenses",
        "created_at": "2025-12-24T11:02:58+00:00",
        "updated_at": "2025-12-24T11:02:58+00:00"
      },
      "position": "1",
      "created_at": "2023-06-16T15:25:06+01:00",
      "updated_at": "2023-06-16T15:25:06+01:00"
    }
  ]
}