> ## 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 Project

> Permanently delete a project and all its related data.

Requires an API key with `full_access` scope.

<Warning>
  This action is irreversible. Deleting a project will permanently remove all
  related data including jobs, files, occurrences, and client access records.
  Consider archiving the project instead if you want to keep the data.
</Warning>

## Path parameters

<ParamField path="projectId" type="string" required>
  The unique identifier of the project.
</ParamField>

## Response

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

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.dronebundle.com/v1/projects/01964c6b-7a3e-7f00-8000-abc123def456 \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

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

## Errors

**404 Not Found** - Project not found.

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