Skip to content

Get Task Execution Details

Request

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
Path
idintegerrequired

Execution task id

Example:1678919049331331
Bodyapplication/jsonrequired
taskIdstring or null

Task id

taskNamestring or null, [ 1 .. 255 ] characters

Task name

taskStateinteger or null, [ 0 .. 9 ]

Plan status; 0:awaiting execution; 1:Executing; 2:Execution completed 3:Cancel

templateIdstring or null, [ 0 .. 99999999999 ]

Template id

templateTitlestring or null, [ 0 .. 255 ] characters

Template title

cloudPhoneIdstring or null

cloud phone id

Example:"1559133625483282"
cloudPhoneNamestring or null, [ 0 .. 100 ] characters

Cloud phone name

beginTimestring or null

Task start time UTC+0 time zone

Example:"2025-01-01 23:59:59"
endTimestring or null

Task end time UTC+0 time zone

Example:"2025-01-02 23:59:59"
pageNointeger or null

Default:1

Example:1
pageSizeinteger or null

Default:10

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
  }'

Responses

Success. data is an object with the fields id, taskName, taskState, cloudPhoneId, cloudPhoneName, templateName, ….

Headers
any
Bodyapplication/json
codeintegerrequired

Response code, 0 indicates success,>0 indicates failure

msgstring or nullrequired

Error msg

requestIdstringrequired

Request trace id

dataobjectrequired
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" } }