enable_disable_query_parameter
Control URL normalization by enabling or disabling specific query parameters for a site, ensuring accurate indexing and search engine performance through Bing Webmaster Tools.
Instructions
Enable or disable a URL normalization parameter for a site.
Args: site_url: The URL of the site query_parameter: The query parameter to enable/disable is_enabled: True to enable, False to disable
Raises: BingWebmasterError: If parameter state cannot be updated
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_enabled | Yes | ||
query_parameter | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"is_enabled": {
"title": "Is Enabled",
"type": "boolean"
},
"query_parameter": {
"title": "Query Parameter",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"query_parameter",
"is_enabled"
],
"title": "enable_disable_query_parameterArguments",
"type": "object"
}