get_blocked_urls
Retrieve a list of blocked pages or directories for a specific website using the Bing Webmaster Tools API to identify and manage access restrictions.
Instructions
Get a list of blocked pages/directories for a site.
Args: site_url: The URL of the site
Returns: List[BlockedUrl]: List of blocked URLs and their settings
Raises: BingWebmasterError: If blocked URLs cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url"
],
"title": "get_blocked_urlsArguments",
"type": "object"
}