API Reference
/- Cloud Phones
- Open API
/
Get Task Execution Detail...
Return the detail of a single RPA execution.
- Preconditions: the execution must belong to your team. The call fails if the execution, its schedule, or its Cloud Phone no longer exists.
- Effect: none. Read-only. Safe to retry with bounded backoff.
- Status values: same scale as
/cloudphone/rpa/subTask/page. - Note: proxy details are resolved even for proxies that have since been deleted, so a historical run still shows what it used.
Security
Authorization
Plan status; 0:awaiting execution; 1:Executing; 2:Execution completed 3:Cancel
- MoreLogin open api endpointhttps://api.morelogin.com/cloudphone/rpa/subTask/detail/{id}
curl -i -X POST \
https://api.morelogin.com/cloudphone/rpa/subTask/detail/1678919049331331 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"taskId": null,
"taskName": null,
"taskState": null
}'Success. data is an object with the fields id, taskName, taskState, cloudPhoneId, cloudPhoneName, templateName, ….
Response
{ "code": 0, "msg": null, "requestId": "0d8b6f1c-9f4e-4d02-9d1a-7c3f5a1b2c3d", "data": { "id": "1673823102599682", "taskName": "example-name", "taskState": 1, "cloudPhoneId": "1673823102599682", "cloudPhoneName": "example-name", "templateName": "example-name", "handleFailCode": "string", "handleFailReason": "string", "handleResult": 1, "handleResultAttachment": "string", "handleTime": "2026-09-01 12:00:00", "endTime": "2026-09-01 12:00:00", "powerOnTime": "2026-09-01 12:00:00", "triggerNextTime": "2026-09-01 12:00:00", "triggerTime": "2026-09-01 12:00:00", "createDate": "2026-09-01 12:00:00", "createMember": "string", "updateDate": "2026-09-01 12:00:00", "updateMember": "2026-09-01 12:00:00" } }