search_console_sitemaps_submit
Submit a sitemap URL to Google Search Console to register or refresh a sitemap entry, triggering Google to re-crawl the feedpath. Safe to call repeatedly; re-submitting re-queues a crawl without duplicates. Requires verified site ownership.
Instructions
Submit a sitemap URL to Google Search Console for the given verified site. Mutates Search Console state — registers or refreshes the sitemap entry so Google will re-crawl it. Safe to call repeatedly: re-submitting the same feedpath re-queues a crawl without creating a duplicate entry (Search Console PUTs the sitemap URL, not POST). Returns {status: 'submitted', sitemap: } on success; the API gives no synchronous processing status. Does not fetch or validate the sitemap contents — that happens asynchronously on Google's side and the parsed results surface in search_console_sitemaps_list afterwards. Requires the authenticated user to be a verified owner or full user of site_url. For read-only inspection of already-submitted sitemaps use search_console_sitemaps_list; for per-URL indexing diagnostics use search_console_url_inspection_inspect.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes | Property identifier as registered in Search Console. For URL-prefix properties use the full URL including trailing slash (e.g. 'https://example.com/'). For Domain properties use the 'sc-domain:' prefix (e.g. 'sc-domain:example.com'). | |
| feedpath | Yes | Absolute URL of the sitemap to submit (e.g. 'https://example.com/sitemap.xml'). Must be on the same host as site_url and reachable to Googlebot over HTTPS. |