remove_blocked_url
Unblock a specified URL on your site using Bing Webmaster Tools. Provide the site URL, blocked URL, entity type, and block date to resolve access issues and restore visibility.
Instructions
Remove a blocked URL from a site.
Args: site_url: The URL of the site blocked_url: The URL to be unblocked entity_type: The type of entity to unblock (Page or Directory) date: The date the URL was blocked
Raises: BingWebmasterError: If URL cannot be unblocked
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blocked_url | Yes | ||
date | No | ||
entity_type | No | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"BlockedUrlEntityType": {
"enum": [
0,
1
],
"title": "BlockedUrlEntityType",
"type": "integer"
}
},
"properties": {
"blocked_url": {
"title": "Blocked Url",
"type": "string"
},
"date": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
},
"entity_type": {
"$ref": "#/$defs/BlockedUrlEntityType",
"default": 0
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"blocked_url"
],
"title": "remove_blocked_urlArguments",
"type": "object"
}