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

# DELETE /analyses/:analysisId

> Delete an analysis result.

## Endpoint

```
DELETE /v1/analyses/{analysisId}
```

## Request

```bash theme={null}
curl -X DELETE "http://client-omni-api.argosidentity.com/v1/analyses/{analysisId}" \
  -H "x-api-key: your-api-key-here"
```

***

## Response (204 No Content)

No response body is returned on successful deletion.

<Note>
  Deleting an analysis is permanent and cannot be undone. Any associated report data will also be removed.
</Note>

***

## Error Codes

| Status | Code                 | Description                          |
| ------ | -------------------- | ------------------------------------ |
| 404    | `ANALYSIS_NOT_FOUND` | The specified analysis was not found |
