# Create department

This endpoint creates a new department

Endpoint: POST /v2/departments
Version: 1.0
Security: OAuth2

## Header parameters:

  - `Idempotency-Key` (string,null)

## Request fields (application/json):

  - `name` (string, required)
    Name of the department

  - `description` (string,null)
    Description of the department

## Response 200 fields (application/json):

  - `id` (string, required)

  - `name` (string, required)
    Name of the department

  - `description` (string,null)
    Description of the department


