# Delete Silence

### Endpoint

**DELETE** `/api/monitors/silences/{silenceID}`

### Authentication

This endpoint requires API Key authentication via the Authorization header.

### Headers

| Header          | Required | Description                    |
| --------------- | -------- | ------------------------------ |
| `Authorization` | Yes      | Bearer token with your API key |

### Path Parameters

| Parameter   | Type   | Required | Description                       |
| ----------- | ------ | -------- | --------------------------------- |
| `silenceID` | string | Yes      | The UUID of the silence to delete |

### Example Request

```bash
curl -sS -X DELETE 'https://app.groundcover.com/api/monitors/silences/<SILENCE_ID>' \
  -H 'Authorization: Bearer <YOUR_API_KEY>'
```

### Response

#### Success Response

**Status Code:** `200 OK`

### Notes

* Once a silence is deleted, suppressed monitors will resume normal notification behavior.
* The `silenceID` is returned when you [create a silence](/use-groundcover/remote-access-and-apis/api-examples/create-silence.md).
* This endpoint deletes **one-time** silences. To delete a recurring silence, see [Recurring Silences API](/use-groundcover/remote-access-and-apis/api-examples/recurring-silences-api.md#delete-a-recurring-silence).


---

# Agent Instructions: 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:

```
GET https://docs.groundcover.com/use-groundcover/remote-access-and-apis/api-examples/delete-silence.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
