get_site_moves
Retrieve site move settings for a specific URL to monitor or manage website migration details within Bing Webmaster Tools, ensuring accurate tracking and updates during site transitions.
Instructions
Get site move information for a specific site.
Args: site_url: The URL of the site
Returns: List[SiteMoveSettings]: List of site move settings
Raises: BingWebmasterError: If the site move information 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_site_movesArguments",
"type": "object"
}