# Delete an employee from a group

Endpoint: DELETE /v1/employees/{id}/groups
Version: v1
Security: x-api-key

## Path parameters:

  - `id` (string, required)
    Unique identifier for the employee

## Request fields (application/json):

  - `group` (string, required)
    The group to remove employee from.
    Example: Engineering team

## Response 200 fields (application/json):

  - `groups` (array, required)
    The groups associated with the employee.
    Example: ["Other team"]

