> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/roboflow/roboflow-ko/deploy/vision-events/delete-events.md).

# 이벤트 삭제

더 이상 필요하지 않은 Vision Events를 삭제할 수 있습니다. 삭제된 이벤트는 쿼리 결과와 Dashboard에서 영구적으로 제거됩니다.

## Dashboard에서 삭제

1. Use Case를 열고 삭제하려는 이벤트를 클릭하세요
2. 이벤트 상세 사이드바에서 이벤트 ID 옆의 휴지통 아이콘을 클릭하세요
3. 대화 상자에서 삭제를 확인하세요

## API를 통해 삭제

다음을 보내세요 `POST` 요청을 `/vision-events/delete` Use Case ID와 삭제할 이벤트 ID 배열을 함께.

```bash
curl -X POST "https://api.roboflow.com/vision-events/delete" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "useCaseId": "assembly-line-qa",
    "eventIds": ["evt-789ghi", "evt-456def"]
  }'
```

**응답:**

```json
{
  "deleted": 2,
  "notFound": []
}
```

`deleted` 는 제거된 이벤트 수를 나타냅니다. 현재 존재하는 이벤트와 일치하지 않는 이벤트 ID는 `notFound` 배열로 반환됩니다.

요청당 최대 1,000개의 이벤트를 삭제할 수 있습니다.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roboflow.com/roboflow/roboflow-ko/deploy/vision-events/delete-events.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
