# Hire Employee **POST /employee** Hire client as an employee in gym. You can only hire an employee if you're ADMIN. ## Servers - http://63.141.232.244:25540/v0: http://63.141.232.244:25540/v0 () ## Authentication methods - Bearer auth ## Parameters ### Body: application/json (object) - **client_id** (number) Id of the client in database (you can get it via GET /client) - **employee_type** (string) Employee's job posting - **left_at** (string(date)) Employee's firing date (can be undefined) ## Responses ### 200 Successfully hired new employee. #### Body: application/json (object) - **success** (boolean) Whether an employee is hired - **employee** (object) ### 400 Validation error of given input. #### Body: application/json (object) - **success** (boolean) Whether query is successful - **error** (array[object]) ### 401 User is not unauthorized or permissions are missing. #### Body: application/json (object) - **success** (boolean) Whether query is successful - **error** (string) Error message ### 429 Rate limit exceeded - 100 queries per 15 minutes. #### Body: application/json (object) - **success** (boolean) Whether query is successful - **error** (string) Error message [Powered by Bump.sh](https://bump.sh)