API Reference
List Running Tasks

List Running Tasks

Action ListRunningTasks

Introduction

This interface is used to query the list of running tasks.

Request

Parameter NameTypeDescriptionRequired
ActionStringThe corresponding API instruction name
PublicKeyStringUser's public key, which can be obtained from the PICPIK User Center (opens in a new tab)
SignatureStringUser's signature generated based on the public key and API instruction, see Signature for details
request_uuidStringRequest UUID, randomly generated by using the UUID generation method. This parameter can be utilized to manage the requests of your business and clients.

Request Example

{
    "Action":    "ListRunningTasks",
    "PublicKey": "ALLak9M4cNdHXKOJAJJ4k8Hh1hZS2EgJF1D0FlPwfl",
    "request_uuid":"b91fcfbe-bb35-47ce-a168-bd6252c75270",
    "Signature": "0131f4e4296f3ca8e1220b47247e83a4315ea8e1"
}

Response

Field NameTypeDescriptionRequired
RetCodeIntReturn status code: 0 indicates a successful return, while non-zero indicates a failure
ActionStringInstruction name
MessageStringThe error message is returned when RetCode is non-zero, providing a detailed description
request_uuidStringReturns the UUID that was included in the request
Field NameTypeDescriptionRequired
TaskUIDList[]StringTask UID List

Response Example

{
	"Action": "ListRunningTasks",
	"RetCode": 0,
	"Message": "",
	"request_uuid": "2dcc219d-0e84-40d4-a6df-bd30c973fc0b",
	"TaskUIDList": ["taskUId1"]
}