list_robot_maps
Retrieve available maps for a specific GS cleaning robot using its serial number to access navigation and operational areas.
Instructions
Fetches the list of maps associated with a specific robot.
Based on: https://developer.gs-robot.com/zh_CN/Robot%20Map%20Service/V1%20List%20Robot%20Map
Note: This API uses POST method with robotSn in the JSON body.
Args:
robot_sn: The serial number of the target robot (e.g., 'GS008-0180-C7P-0000').
Returns:
A list of dictionaries, each containing 'mapId' and 'mapName'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| robot_sn | Yes |
Input Schema (JSON Schema)
{
"properties": {
"robot_sn": {
"title": "Robot Sn",
"type": "string"
}
},
"required": [
"robot_sn"
],
"type": "object"
}