API Reference
/- Cloud Phones
- Open API
/
List Task Execution Recor...
List individual RPA executions, page by page.
- Effect: none. Read-only. Safe to retry with bounded backoff.
- Status values:
taskStateis0waiting,1running,2queued,3succeeded,4failed,5cancelled. Waiting and queued are distinguished by whether the execution is still on its original trigger time. - Search caveat: template-title search resolves titles in the current request language first, so a title that does not match that language returns an empty page rather than all executions.
Security
Authorization
Plan status; 0:awaiting execution; 1:Executing; 2:Execution completed 3:Cancel
- MoreLogin open api endpointhttps://api.morelogin.com/cloudphone/rpa/subTask/page
curl -i -X POST \
https://api.morelogin.com/cloudphone/rpa/subTask/page \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pageNo": 1,
"pageSize": 10
}'Success. data.dataList holds the records for the requested page and is an empty array when there are no matches; data.total, data.current and data.pages describe the paging.
Response
{ "code": 0, "msg": null, "requestId": "0d8b6f1c-9f4e-4d02-9d1a-7c3f5a1b2c3d", "data": { "dataList": [ … ], "current": "1", "pages": "1", "total": "1" } }