Domain name for API request: wedata.intl.tencentcloudapi.com.
This API is used to batch rerun instances asynchronously.
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: RerunTaskInstancesAsync. |
| Version | Yes | String | Common Params. The value used for this API: 2025-08-06. |
| Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. |
| ProjectId | Yes | String | Project ID. |
| InstanceKeyList.N | Yes | Array of String | Instance id list. obtain from ListInstances. |
| RerunType | No | String | Rerun type. valid values: 1 (self), 3 (child), 2 (self and child). default: 1. |
| CheckParentType | No | String | Whether to check upstream tasks: ALL (ALL), MAKE_SCOPE (select), NONE (do not check). default is NONE. |
| SonRangeType | No | String | Downstream Instance Scope * WORKFLOW: Within the current workflow (default) * PROJECT: Within the current project * ALL: Across all projects with cross-workflow dependencies |
| SkipEventListening | No | Boolean | Specifies whether to ignore event monitoring when rerunning. |
| RedefineParallelNum | No | Integer | Specifies the degree of concurrency for a custom instance run. if not configured, use the existing self-dependent task. |
| RedefineSelfWorkflowDependency | No | String | Custom workflow self-dependency. valid values: yes (enable), no (disable). if not configured, use the existing workflow self-dependency. |
| RedefineParamList | No | KVMap | Rerun instance custom parameter. |
| Parameter Name | Type | Description |
|---|---|---|
| Data | OpsAsyncResponse | Asynchronous ID returned by the batch rerun operation. You can use the GetAsyncJob API to retrieve detailed execution information. |
| 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 rerun self instance
POST / HTTP/1.1
Host: wedata.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: RerunTaskInstancesAsync
<Common request parameters>
{
"ProjectId": "1460947878944567296",
"InstanceKeyList": [
"20250714200130106_2025-10-01 00:00:00"
]
}{
"Response": {
"Data": {
"AsyncId": "14f05312-e8d6-4b7e-9221-ddc2be422780"
},
"RequestId": "089f0c66-232c-4fee-9993-aa3bb32036dd"
}
}
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 | Operation failed. |
Feedback