> ## Documentation Index
> Fetch the complete documentation index at: https://dronebundle.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Job Type

> Delete a custom job type from your workspace.

Requires an API key with `full_access` scope.

Only custom job types can be deleted. Predefined types (e.g. Wind Turbine, Cell Tower) cannot be removed.

## Path parameters

<ParamField path="jobTypeId" type="string" required>
  The unique identifier of the custom job type to delete.
</ParamField>

## Response

Returns `204 No Content` with an empty response body.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.dronebundle.com/v1/job-types/019d4370-abcd-7000-8000-123456789abc \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 204 theme={null}
  {}
  ```
</ResponseExample>

## Errors

**400 Bad Request** - Cannot delete predefined types.

```json theme={null}
{
  "message": "Cannot delete predefined job types"
}
```

**404 Not Found** - Job type not found.

```json theme={null}
{
  "message": "Job Type not found"
}
```
