---
title: "Delete employee"
method: DELETE
path: "/v6/employees/{id}"
tags: ["Employee Management"]
---

# Delete employee

`DELETE /v6/employees/{id}`

Delete an employee for the given id

## Path parameters

- `id` string, required

## Response `200`

Success

- SuccessResponseEmployeeGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` EmployeeGetDto — The data generated by the action performed.
    - `id` string, required — Id of the employee
    - `userId` string, required — Id of the employee in your DB
    - `email` string, nullable, required — Email address for the employee
    - `firstName` string, required — First name for the employee
    - `lastName` string, required — Last name for the employee
    - `billableRate` number, nullable, required — Hourly billable rate for the employee
    - `view` 'OWNER' | 'EMPLOYEE' | 'ACCOUNTANT', required — Which embeddable user experience the employee should receive
    - `ownershipPercentage` number, nullable, required — Percentage ownership for the employee
    - `dimensionValues` DimensionValueExpanded[], required
      - `id` string, required — Id of the dimension value
      - `dimension` DimensionExpanded — Dimension for this dimension value
        - `id` string, required — Id of the dimension
        - `name` string — Name of the dimension
        - `requiredness` 'REQUIRED' | 'NOT_REQUIRED' — Requiredness of the dimension
      - `name` string — Name of the dimension value
      - `child` ChildDimensionValue — Child dimension value, if applicable
        - `id` string, required — Id of the dimension value
        - `dimension` DimensionExpanded — Dimension for this dimension value
          - `id` string, required — Id of the dimension
          - `name` string — Name of the dimension
          - `requiredness` 'REQUIRED' | 'NOT_REQUIRED' — Requiredness of the dimension
        - `name` string — Name of the dimension value
        - `child` ChildDimensionValue — recursive
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED', required — Status of the employee
    - `customData` JsonNode, nullable — Custom JSON in which you can store any data with max length of 2000 characters
      - `empty` boolean
      - `array` boolean
      - `null` boolean
      - `object` boolean
      - `float` boolean
      - `string` boolean
      - `number` boolean
      - `missingNode` boolean
      - `valueNode` boolean
      - `nodeType` 'ARRAY' | 'BINARY' | 'BOOLEAN' | 'MISSING' | 'NULL' | 'NUMBER' | 'OBJECT' | 'POJO' | 'STRING'
      - `pojo` boolean
      - `integralNumber` boolean
      - `floatingPointNumber` boolean
      - `short` boolean
      - `int` boolean
      - `long` boolean
      - `double` boolean
      - `bigDecimal` boolean
      - `bigInteger` boolean
      - `textual` boolean
      - `boolean` boolean
      - `binary` boolean
      - `container` boolean
      - `embeddedValue` boolean

## Other responses

- `400` — Bad request
- `401` — Not authenticated
- `403` — Not authorized
- `404` — Endpoint not found
- `500` — Internal server error

---

[API](https://skmtc.net/tight/apis/tight-api.md) · [All operations](https://skmtc.net/tight/apis/tight-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tight/tight-api/revisions/e9f0790a89af/schema)
