# Delete a global webhook

From **GitHub v3 REST API**.

`DELETE /admin/hooks/{hook_id}`

Delete a global webhook

## Parameters

### `accept`

- Location: header
- Required: true
- Type: `string`
- Default: `application/vnd.github.superpro-preview+json`

This API is under preview and subject to change.

### `hook_id`

- Location: path
- Required: true
- Type: `integer`

## Responses

### `204`

Response

## Request examples

### cURL

```shell
curl --request DELETE \
  --url {protocol}://{hostname}/api/v3/admin/hooks/{hook_id}
```
