> ## 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 URL to Google Search Console for a property, or asks Google to reprocess an already-submitted sitemap

Submits a sitemap URL to Google Search Console for a property, or asks Google to reprocess an already-submitted sitemap. Requires a connection with the full Search Console scope; older read-only connections must be reconnected first.

|                       |                       |
| --------------------- | --------------------- |
| **App**               | Google Search Console |
| **Operation ID**      | `gsc_submit_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 sitemap to submit, for example `https://example.com/sitemap.xml.` Submitting an already-submitted sitemap asks Google to reprocess it. |

## Output

**Type**: `Dict`

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

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

**Example**:

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