Get a list of employee departments

GET /api/v1/static/departments

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • name string
      • value string
GET /api/v1/static/departments
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/departments' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Administrator",
      "value": "administrator"
    },
    {
      "name": "Adviser",
      "value": "adviser"
    },
    {
      "name": "Compliance",
      "value": "compliance"
    },
    {
      "name": "Finance",
      "value": "finance"
    },
    {
      "name": "IT",
      "value": "it"
    },
    {
      "name": "Marketing",
      "value": "marketing"
    },
    {
      "name": "Operations",
      "value": "operations"
    },
    {
      "name": "Paraplanner",
      "value": "paraplanner"
    }
  ]
}