Object Overview

The Department Object

A department is an organizational unit within a company. Employees can be assigned to a department, and you can filter employees by department_id.


Returned by

EndpointShape
GET /departmentsList of departments
GET /departments/:department_idSingle department

The department object also appears as a nested object within the employee object.


Field Reference

FieldTypeDescription
department_idintegerUnique department identifier.
namestringDepartment name.

Example

{
  "department_id": 5,
  "name": "Engineering"
}

Related