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

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

### Get user by id.
GET {{apiBaseUrl}}/users/1

### Create user.
POST {{apiBaseUrl}}/users
Content-Type: application/json

{
    "firstName": "first name 1",
    "lastName": "last name 1",
    "email": "email",
    "departmentId": 1
}