# Channel deletion 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}'
```

Plain textCopy

<table><thead><tr><th width="139">Header</th><th width="115">Type</th><th width="120">Required</th><th>Description</th></tr></thead><tbody><tr><td>x-api-key</td><td>String</td><td>O</td><td>Dashboard > Settings > Project settings > API Key</td></tr></tbody></table>

<table><thead><tr><th width="141">Attribute</th><th width="116">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>projectId</td><td>String</td><td>O</td><td>Project ID (Dashboard > Settings > Project settings > Project ID)</td></tr><tr><td>channelId</td><td>String</td><td>O</td><td>Channel ID</td></tr></tbody></table>

**Response**

Success

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

JavaScriptCopy

<table><thead><tr><th width="195">Attribute</th><th width="139">Type</th><th>Description</th></tr></thead><tbody><tr><td>status</td><td>Int</td><td>Result (1: Successful. Refer to the error code for failures.)</td></tr><tr><td>message</td><td>String</td><td>Result message</td></tr></tbody></table>

<br>
