Skip to content
Get started

Terminate employee

employees.terminate(stremployee_id)
delete/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.

ParametersExpand Collapse
employee_id: str
Terminate employee
from vitable_connect_api import VitableConnectAPI

client = VitableConnectAPI(
    api_key="My API Key",
)
client.employees.terminate(
    "empl_abc123def456",
)
Returns Examples