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

> Permanently delete a job from a project.

Requires an API key with `full_access` scope.

<Warning>
  This action is irreversible. Deleting a job will permanently remove the job
  and all its associated occurrences.
</Warning>

## Path parameters

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

<ParamField path="jobId" type="string" required>
  The unique identifier of the job.
</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/jobs/019d4350-a1b2-7c3d-8e4f-567890abcdef \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

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

## Errors

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

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