add_deep_link_block
Block specific deep links from appearing in search results for a site. Specify the site URL, market, search URL, and deep link URL to prevent unwanted deep linking in Bing Webmaster Tools.
Instructions
Add a deep link block.
Args: site_url: The URL of the site market: The market code search_url: The search URL deep_link_url: The deep link URL to block
Raises: BingWebmasterError: If block cannot be added
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deep_link_url | Yes | ||
market | Yes | ||
search_url | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deep_link_url": {
"title": "Deep Link Url",
"type": "string"
},
"market": {
"title": "Market",
"type": "string"
},
"search_url": {
"title": "Search Url",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"market",
"search_url",
"deep_link_url"
],
"title": "add_deep_link_blockArguments",
"type": "object"
}