Terminate employee
employees.terminate(stremployee_id)
/v1/employees/{employee_id}
Terminates a specific employee. This sets the employee's active status to false and records a termination date. The employee record is not permanently deleted for compliance reasons.
Parameters
employee_id: str
Terminate employee
from vitable_connect_api import VitableConnectAPI
client = VitableConnectAPI(
api_key="My API Key",
)
client.employees.terminate(
"empl_abc123def456",
)