add_query_parameter
Add a query parameter to a site URL for URL normalization using Bing Webmaster Tools API, ensuring proper indexing and site management.
Instructions
Add a URL normalization parameter for a site.
Args: site_url: The URL of the site query_parameter: The query parameter to add
Raises: BingWebmasterError: If parameter cannot be added
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query_parameter | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query_parameter": {
"minLength": 1,
"pattern": "^[A-Za-z0-9\\-_.~:]+$",
"title": "Query Parameter",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"query_parameter"
],
"title": "add_query_parameterArguments",
"type": "object"
}