get_task_reports_smart
Retrieve robot task reports by automatically selecting the correct API based on robot series. Filter reports by serial number, date range, and pagination to access operational data.
Instructions
智能获取任务报告。
自动根据机器人系列选择M-line或S-line任务报告API。
Args:
serial_number: 机器人序列号
page: 页码
page_size: 每页大小
start_time_utc_floor: 开始时间过滤
start_time_utc_upper: 结束时间过滤
Returns:
任务报告数据字典
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | ||
| page | No | ||
| page_size | No | ||
| start_time_utc_floor | No | ||
| start_time_utc_upper | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"page_size": {
"default": 10,
"title": "Page Size",
"type": "integer"
},
"serial_number": {
"title": "Serial Number",
"type": "string"
},
"start_time_utc_floor": {
"default": null,
"title": "Start Time Utc Floor",
"type": "string"
},
"start_time_utc_upper": {
"default": null,
"title": "Start Time Utc Upper",
"type": "string"
}
},
"required": [
"serial_number"
],
"type": "object"
}