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

> 분석 결과를 삭제합니다.

## Endpoint

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

## 요청

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

***

## 응답 (204 No Content)

삭제가 성공하면 응답 본문이 반환되지 않습니다.

<Note>
  분석 삭제는 영구적이며 취소할 수 없습니다. 관련된 리포트 데이터도 함께 삭제됩니다.
</Note>

***

## 에러 코드

| Status | Code                 | 설명                |
| ------ | -------------------- | ----------------- |
| 404    | `ANALYSIS_NOT_FOUND` | 지정된 분석을 찾을 수 없습니다 |
