All Products
Search
Document Center

Data Management:ListTaskFlowCooperators

Last Updated:Apr 26, 2024

Queries a list of users that are involved in a task flow.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TidlongNo

The ID of the tenant.

Note To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant.
3***
DagIdlongYes

The ID of the task flow. You can call the ListTaskFlow or ListLhTaskFlowAndScenario operation to query the task flow ID.

15****

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request. You can use the ID to locate logs and troubleshoot issues.

54C99C70-2DFF-5A8C-A252-EBAA1EB668EC
ErrorCodestring

The error code returned if the request failed.

UnknownError
ErrorMessagestring

The error message returned if the request failed.

UnknownError
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
true
CooperatorListobject []

The users that are involved in the task flow.

NickNamestring

The alias of the user.

name
Emailstring

The email address of the user.

test@XX.com
LoginNamestring

The username.

name
UserIdstring

userId.

123

Examples

Sample success responses

JSONformat

{
  "RequestId": "54C99C70-2DFF-5A8C-A252-EBAA1EB668EC",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true,
  "CooperatorList": {
    "Cooperator": [
      {
        "NickName": "name",
        "Email": "test@XX.com",
        "LoginName": "name",
        "UserId": "123"
      }
    ]
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history