Domain name for API request: controlcenter.intl.tencentcloudapi.com.
This API is used to retrieve the application history of a certain baseline item.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: ListDeployStepTasks. |
| Version | Yes | String | Common Params. The value used for this API: 2023-01-10. |
| Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. |
| Identifier | Yes | String | Specifies the unique identifier for the feature item, can only contain english letters, digits, and @, ,._[]-:()()[]+=., with a length of 2-128 characters. |
| Limit | Yes | Integer | Maximum number of returned records. value ranges from 0 to 200. |
| Offset | Yes | Integer | Offset. valid values are equal to or greater than 0. |
| Parameter Name | Type | Description |
|---|---|---|
| BaselineDeployStepTaskList | Array of BaselineStepTaskInfo | Account factory baseline function application information list. |
| Total | Integer | Total quantity. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to retrieve deployment task history by baseline ID.
POST / HTTP/1.1
Host: controlcenter.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: ListDeployStepTasks
<Common request parameters>
{
"Limit": 10,
"Offset": 0,
"Identifier": "TCC-AF_CAM_USER_PASSWORD_POLICY"
}{
"Response": {
"Total": 1,
"BaselineDeployStepTaskList": [
{
"TaskId": "s8gsj834y8ef0cjs",
"Identifier": "TCC-AF_CAM_USER_PASSWORD_POLICY",
"MemberUin": 100000000001,
"Status": "Success",
"Output": "",
"ErrCode": "Ok",
"ErrMessage": "Ok",
"CreateTime": "2022-08-18 12:00:00",
"UpdateTime": "2022-08-18 12:00:00"
}
],
"RequestId": "ef0e0140-4e51-4087-95a1-f7fd18ca6d63"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
| Error Code | Description |
|---|---|
| FailedOperation.ControlCenterNotOpen | Control Center service is not enabled. |
| FailedOperation.DBOperationError | Database operation exception. |
| ResourceNotFound.AccountFactoryItemNotExist | Account Factory baseline does not exist. |
Feedback