Skip to content

Create Department

Request

Creates a new Department to categorize roles within the organization.

Security
ApiKey
Body
namestringrequired

The name of the department used to categorize employees into functional teams for capacity planning.

curl -i -X POST \
  https://developer.getparallax.com/_mock/api-documentation/swagger/v1/departments \
  -H 'Content-Type: application/json-patch+json' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE' \
  -d '{
    "name": "string"
  }'

Responses

Created

Bodyapplication/json
idstring, (uuid)

The unique identifier of the department in Parallax.

namestring

The name of the department used to categorize employees into functional teams for capacity planning.

archivedboolean

Indicates whether the department is archived and no longer active for resource assignment or reporting.

Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "archived": true }