Staff

Staff represent individuals belonging under employment for an account and are considered the main users of Clientary.

Creation, deletion and update of Staff users is not supported via the API. You will need to log in to your account and create users manually.

Get All Staff

GET /staff
{
  "staff": [
    {
      "name": "John Doe"
      "ext": "1234"
      "title": "Product Manager"
      "id": 495
      "mobile": "123-456-7891"
      "phone": "123-456-7890"
      "avatar": "default_avatars/avatars/missing_original.jpg"
      "email": "[email protected]"
    },
    ...
  ]
}

Get A Staff User

GET /staff/:id
{
  "name": "John Doe"
  "ext": "1234"
  "title": "Product Manager"
  "id": 495
  "mobile": "123-456-7891"
  "phone": "123-456-7890"
  "avatar": "default_avatars/avatars/missing_original.jpg"
  "email": "[email protected]"
}