> ## 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.

# Remove Sitemap

> Removes a submitted sitemap or feed from Bing Webmaster Tools for a site

Removes a submitted sitemap or feed from Bing Webmaster Tools for a site. Only the submission is removed; the sitemap file stays on the site.

|                       |                                 |
| --------------------- | ------------------------------- |
| **App**               | Bing Webmaster Tools            |
| **Operation ID**      | `bing_webmaster_remove_sitemap` |
| **Type**              | Action                          |
| **Connection**        | `bing_webmaster` (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 site the sitemap belongs to.                                                                                                                                                                                                        |
| `sitemap_url` | string         | Yes      | -       | Full URL of the submitted sitemap to remove from Bing Webmaster Tools, for example `https://example.com/sitemap.xml.` This only removes the submission; the sitemap file stays on your site and Bing may still discover it through robots.txt. |

## Output

**Type**: `Dict`

Returns a confirmation with the removed sitemap URL.

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

**Example**:

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