## Delete Webhook

**delete** `/print-mail/v1/webhooks/{id}`

Delete a Webhook by ID. Note that this operation cannot be undone.

### Path Parameters

- `id: string`

### Returns

- `id: string`

  A unique ID prefixed with webhook_

- `deleted: true`

  - `true`

- `object: "webhook"`

  Always `webhook`.

  - `"webhook"`

### Example

```http
curl https://api.postgrid.com/print-mail/v1/webhooks/$ID \
    -X DELETE \
    -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY"
```

#### Response

```json
{
  "id": "webhook_skN2ZTvFwS62oc5tJY1gzw",
  "object": "webhook",
  "deleted": true
}
```
