> For the complete documentation index, see [llms.txt](https://docs.gamechat.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gamechat.me/basics/game-chat-v2/game-chat-ri-ben-yu/openapi/channeruapi-1.md).

# チャンネル削除API

## **Request**

* Method : DELETE
* URI : /channel/{channelId}

```
DELETE
url : https://dashboard-api.gamechat.naverncp.com/v1/api/project/{projectId}/channel/{channelId}
Header : 'x-api-key: {API Key}'
```

<table><thead><tr><th width="135">Header</th><th width="113">Type</th><th width="124">Required</th><th>Description</th></tr></thead><tbody><tr><td>x-api-key</td><td>String</td><td>O</td><td>ダッシュボード > 設定 > プロジェクトの設定 > API Key</td></tr></tbody></table>

<table><thead><tr><th width="138">Attribute</th><th width="114">Type</th><th width="124">Required</th><th>Description</th></tr></thead><tbody><tr><td>projectId</td><td>String</td><td>O</td><td>プロジェクトID(ダッシュボード > 設定 > プロジェクトの設定 > プロジェクトID)</td></tr><tr><td>channelId</td><td>String</td><td>O</td><td>チャンネルID</td></tr></tbody></table>

## **Response**

成功

```javascript
{
    "status": 1,
    "message": "success"
}
```

<table><thead><tr><th width="147">Attribute</th><th width="117">Type</th><th>Description</th></tr></thead><tbody><tr><td>status</td><td>Int</td><td>結果値(1：成功、失敗はエラーコードを参考)</td></tr><tr><td>message</td><td>String</td><td>結果メッセージ</td></tr></tbody></table>
