> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Sitemap

> Removes a submitted sitemap from Google Search Console for a property

Removes a submitted sitemap from Google Search Console for a property. Only the submission is removed; the sitemap file stays on the site. Requires a connection with the full Search Console scope; older read-only connections must be reconnected first.

|                       |                       |
| --------------------- | --------------------- |
| **App**               | Google Search Console |
| **Operation ID**      | `gsc_delete_sitemap`  |
| **Type**              | Action                |
| **Connection**        | `gsc` (required)      |
| **Credits per run**   | 1                     |
| **Agent / MCP tool**  | Yes                   |
| **Requires approval** | Yes (write operation) |

## Inputs

| Field         | Type           | Required | Default | Description                                                                                                                                                                                                                                        |
| ------------- | -------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `site`        | DynamicAccount | Yes      | -       | Select the Search Console property the sitemap belongs to.                                                                                                                                                                                         |
| `sitemap_url` | string         | Yes      | -       | Full URL of the submitted sitemap to remove from Search Console, for example `https://example.com/sitemap.xml.` This only removes the submission; the sitemap file itself stays on your site and Google may still discover it through other means. |

## Output

**Type**: `Dict`

Returns a confirmation with the removed sitemap URL.

**Fields**: `status`, `site`, `sitemap_url`

**Example**:

```json theme={"dark"}
{
  "status": "deleted",
  "site": "sc-domain:example.com",
  "sitemap_url": "https://example.com/sitemap.xml"
}
```
