list_robots
Retrieve a paginated list of GS cleaning robots with optional filtering by relation type to monitor and manage robot fleets.
Instructions
Fetches the list of robots from the Gausium OpenAPI.
Based on: https://developer.gs-robot.com/zh_CN/Robot%20Information%20Service/List%20Robots
Args:
page: The page number to retrieve (must be > 0).
page_size: The number of items per page.
relation: Optional relation type (e.g., 'contract').
Returns:
A dictionary containing the robot list data from the API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| page_size | No | ||
| relation | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"page_size": {
"default": 10,
"title": "Page Size",
"type": "integer"
},
"relation": {
"default": null,
"title": "Relation",
"type": "string"
}
},
"type": "object"
}