All Products
Search
Document Center

DataWorks:ListDeploymentPackages

Last Updated:Jan 12, 2026

Queries a list of deployment packages.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
ProjectIdentifierstringNo

The unique identifier of the DataWorks workspace, which is the identifier at the top of the Data Studio page where you switch workspaces. Either this parameter or ProjectId must be specified to determine which DataWorks workspace this API call operates on.

dw_project
ProjectIdlongNo

The DataWorks workspace ID. You can log on to the DataWorks console and go to the workspace configuration page to query the ID. You must configure either this parameter or the ProjectIdentifier parameter to determine the DataWorks workspace to which the operation is applied.

10003
CreatorstringNo

The Alibaba Cloud account ID of the deployment package creator.

110755000425****
EndCreateTimelongNo

The maximum millisecond timestamp for when the deployment package was created.

1593877765000
ExecutorstringNo

The Alibaba Cloud account ID of the deployment package executor.

2003****
EndExecuteTimelongNo

The maximum millisecond timestamp for when the deployment package started executing.

1593877765000
StatusintegerNo

The status of the deployment package. Valid values:

  • 0: It is ready.
  • 1: It was successfully deployed.
  • 2: It failed to be deployed.
  • 6: It was rejected.
1
KeywordstringNo

The keyword in the deployment package name. DataWorks supports fuzzy matching, meaning you can enter a keyword to query for deployment packages that contain it.

abc
PageNumberintegerNo

The page number.

1
PageSizeintegerNo

The number of records per page. Default value: 10. Maximum value: 100.

10

Response parameters

ParameterTypeDescriptionExample
object

The response.

RequestIdstring

The request ID.

952795279527ab****
Dataobject

The list of deployment packages that meet the query conditions.

PageNumberlong

The page number.

1
PageSizelong

The number of records per page.

10
TotalCountlong

The total number of records that meet the conditions.

20
Deploymentsarray<object>

The returned list of deployment packages.

Deploymentobject

The detailed information of the deployment package.

Statusinteger

The status of the deployment package. Valid values:

  • 0: It is ready.
  • 1: It was successfully deployed.
  • 2: It failed to be deployed.
  • 6: It was rejected.
1
ErrorMessagestring

When the deployment package fails to execute, this parameter is used to record the error message.

OK
CreateTimelong

The timestamp when the deployment package was created.

1593877765000
Executorstring

The Alibaba Cloud account ID of the deployment package executor.

2003****
Creatorstring

The Alibaba Cloud account ID of the deployment package creator.

2003****
ExecuteTimelong

The timestamp when the deployment package was executed.

1593877765000
Namestring

The name of the deployment package.

auto_created
Idlong

The ID of the deployment package. You can use this ID to call the GetDeployment operation to get the deployment package details.

11111

Examples

Sample success responses

JSONformat

{
  "RequestId": "952795279527ab****",
  "Data": {
    "PageNumber": 1,
    "PageSize": 10,
    "TotalCount": 20,
    "Deployments": [
      {
        "Status": 1,
        "ErrorMessage": "OK",
        "CreateTime": 1593877765000,
        "Executor": "2003****",
        "Creator": "2003****",
        "ExecuteTime": 1593877765000,
        "Name": "auto_created",
        "Id": 11111
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
403Forbidden.AccessAccess is forbidden. Please first activate DataWorks Enterprise Edition or Flagship Edition.No permission, please authorize
429Throttling.ApiThe request for this resource has exceeded your available limit.-
429Throttling.SystemThe DataWorks system is busy. Try again later.-
429Throttling.UserYour request is too frequent. Try again later.-
500InternalError.SystemAn internal system error occurred. Try again later.-

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