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

# Submit Sitemap

> Submits a sitemap or feed URL to Bing Webmaster Tools for a site

Submits a sitemap or feed URL to Bing Webmaster Tools for a site. Bing accepts Sitemap, RSS 2.0, Atom 0.3, Atom 1.0 and plain text URL lists.

|                       |                                 |
| --------------------- | ------------------------------- |
| **App**               | Bing Webmaster Tools            |
| **Operation ID**      | `bing_webmaster_submit_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 sitemap or feed to submit, for example `https://example.com/sitemap.xml.` Bing accepts Sitemap, RSS 2.0, Atom 0.3, Atom 1.0 and plain text URL lists. |

## Output

**Type**: `Dict`

Returns a confirmation with the submitted sitemap URL. Bing processes the sitemap asynchronously.

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

**Example**:

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