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
    • data array[object]

      Additional properties are allowed.

GET /api/v1/expenditure-structure/field
curl \
 -X GET https://api.plannrcrm.com/api/v1/expenditure-structure/field \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Electricity",
      "uuid": "40b1a87b-59cb-4e74-9016-72d32ddf5f4f",
      "section": "Housekeeping Expenses",
      "created_at": "2024-11-20T13:23:59+00:00",
      "updated_at": "2024-11-20T13:23:59+00:00"
    }
  ]
}