List Running Tasks
Action
ListRunningTask
Introduction
⚠️
This interface is no longer maintained.
This interface is used to query the list of tasks that are currently in progress.
Request
Parameter Name | Type | Description | Required |
---|---|---|---|
Action | String | The corresponding API command name, which is ListRunningTask for this API | ✓ |
PublicKey | String | User's public key, which can be obtained from the User Center (opens in a new tab) | ✓ |
Signature | String | User's signature generated based on the public key and API command, see Signature | ✓ |
request_uuid | String | Request UUID, randomly generated using the UUID generation method |
Request Example
{
"Action": "ListRunningTask",
"PublicKey": "ALLak9M4cNdHXKOJAJJ4k8Hh1hZS2EgJF1D0FlPwfl",
"request_uuid":"ce8c48bb-62a8-4492-9077-aabea6eb0ed7",
"Signature": "e5ba3c5d5ec12f955b7c7edc64d2d641a824b03c"
}
Response
Field Name | Type | Description | Required |
---|---|---|---|
RetCode | Int | Return status code. 0 indicates a successful response, non-zero indicates a failure. | ✓ |
Action | String | Operation command name. | ✓ |
Message | String | Error message returned. Provides detailed description when RetCode is non-zero. | |
TaskUIDList | []String | List of ongoing task UIDs. | ✓ |
Response Example
{
"Action":"",
"RetCode":0,
"Message":"",
"TaskUIDList":[
"cjr997tleg738lelk3n0"
]
}