submit_url
Submit a specific URL for indexing to Bing Webmaster Tools. Use this tool to ensure search engines promptly crawl and index your content. Check url submission quota before submitting.
Instructions
Submit a single URL for indexing.
It is possible to submit only limited number of url. get_url_submission_quota should be called to determine how much urls can be submitted.
Args: site_url: The URL of the site url: The specific URL to submit
Raises: BingWebmasterError: If URL cannot be submitted
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"url"
],
"title": "submit_urlArguments",
"type": "object"
}