Get all the Fields for a Life Stage Section for a Firm

GET /api/v1/expenditure-structure/field

The Fields are ordered by their position values in ascending order

Path parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/expenditure-structure/field
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/expenditure-structure/field' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Electricity",
      "uuid": "a7934a19-e6d8-40d6-a374-9f7dd1ea80cd",
      "section": "Housekeeping Expenses",
      "created_at": "2025-04-22T13:44:16+01:00",
      "updated_at": "2025-04-22T13:44:16+01:00"
    }
  ]
}