get_deep_link_blocks
Retrieve deep link blocks for a specified site using Bing Webmaster Tools API to analyze and manage URL indexing issues efficiently.
Instructions
Get deep link blocks for a site.
Args: site_url: The URL of the site
Returns: List[DeepLinkBlock]: List of deep link blocks
Raises: BingWebmasterError: If blocks 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_deep_link_blocksArguments",
"type": "object"
}