@apiGatewayPort = 9191
@apiBaseUrl = http://localhost:{{apiGatewayPort}}

### Get departments.
GET {{apiBaseUrl}}/departments

### Get department by id.
GET {{apiBaseUrl}}/departments/1

### Create department.
POST {{apiBaseUrl}}/departments
Content-Type: application/json

{
    "departmentName": "name 1",
    "departmentAddress": "address 1",
    "departmentCode": "code 1"
}