Get the scheduled task list (task logs) with pagination support, up to a maximum of 100 items per page
POST/api/v1/automation/taskList| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | No | Task ID |
| issue_at_start | string | Yes | Publish start time, must be a date-time string in the format Y-m-d H:i:s |
| issue_at_end | string | Yes | Publish end time, must be a date-time string in the format Y-m-d H:i:s |
| execution_at_start | string | No | Execution start time, must be a date-time string in the format Y-m-d H:i:s |
| execution_at_end | string | No | Execution end time, must be a date-time string in the format Y-m-d H:i:s |
| status | array | No | Status: 0 Pending Execution; 1 Executing; 2 Paused; 3 Finished; 4 Failure; 5 Cancel Execution |
| template_type | array | No | Template source: 1 Official template; 2 Custom template |
| name | string | No | Plan name |
| image_name | string | No | Cloud phone name |
| image_ip | string | No | IP |
| sort_by | string | No | Sorting field. Options: issue_at (publish time); created_at (Create Time) |
| order | string | No | Sorting order: asc for ascending, desc for descending |
| page | int | No | Request page number, defaults to the first page if not provided |
| pagesize | int | No | Number of items per page, defaults to 10 items/page if not provided |
{
"page": 1,
"pagesize": 10,
"status": [0,3,4],
"issue_at_start": "2026-01-01 00:00:00",
"issue_at_end": "2026-02-01 23:59:59",
"sort_by": "issue_at",
"order": "desc",
"id": "xxx",
"name": "xxx",
"template_type": [1],
"image_name": "xxx",
"image_ip": "xxx",
"execution_at_start": "2026-01-01 00:00:00",
"execution_at_end": "2026-01-23 23:59:59"
}
{
"code": 200,
"data": {
"list": [
{
"id": "xxx", // ID
"name": "xxx", // Name
"task_type_name": "Official template", // Template source
"image_name": "xxx", // Cloud phone name
"ip": "xxx", // IP
"remark": "xxx", // Remark
"status": 3, // Status
"issue_at": "2026-01-10 00:00", // Publish time
"start_at": "2026-01-13 13:04:01", // Execution start time
"finish_at": "2026-01-13 13:07:19", // Execution end time
"cost_time": 198, // Execution duration(Seconds)
"execution_time": "2026-01-13 13:04~2026-01-13 13:07", // Execution time
"created_at": "2026-01-13 13:02:35" // Create time
}
],
"page": 1,
"pagesize": 10,
"total": 1,
"total_page": 1
},
"message": "Success"
}