employees_api = client.employees
EmployeesApi
This endpoint is deprecated.
def list_employees(self,
location_id=None,
status=None,
limit=None,
cursor=None)
Parameter | Type | Tags | Description |
---|---|---|---|
location_id |
str |
Query, Optional | - |
status |
str (Employee Status) |
Query, Optional | Specifies the EmployeeStatus to filter the employee by. |
limit |
int |
Query, Optional | The number of employees to be returned on each page. |
cursor |
str |
Query, Optional | The token required to retrieve the specified page of results. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type List Employees Response
.
result = employees_api.list_employees()
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
This endpoint is deprecated.
def retrieve_employee(self,
id)
Parameter | Type | Tags | Description |
---|---|---|---|
id |
str |
Template, Required | UUID for the employee that was requested. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Retrieve Employee Response
.
id = 'id0'
result = employees_api.retrieve_employee(id)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)