This API is used to delete metadata migration tasks in batches.
POST /v2/{project_id}/instances/{instance_id}/metadata/batch-delete
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
project_id |
Yes |
String |
Definition Project ID. For details about how to obtain it, see Obtaining a Project ID. Constraints N/A Range N/A Default Value N/A |
instance_id |
Yes |
String |
Definition Instance ID. You can call the API for querying all instances to obtain the instance ID. The instance ID is in the response body. Constraints N/A Range N/A Default Value N/A |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
task_ids |
Yes |
Array of strings |
Definition Tasks to be deleted. Constraints N/A Range N/A Default Value N/A |
Status code: 200
Parameter |
Type |
Description |
|---|---|---|
success_task_list |
Array of strings |
Definition List of tasks that are successfully deleted. Constraints N/A Range N/A Default Value N/A |
Deleting metadata migration tasks in batches
POST https://{endpoint}/v2/{project_id}/instances/{instance_id}/metadata/batch-delete
{
"task_ids" : [ "1b8f2c93-8057-4bdd-9be5-5b6883737099", "fa89699b-61b9-497d-b1ac-972623f3c0ce" ]
}
Status code: 200
Metadata migration tasks deleted in batches.
{
"success_task_list" : [ "1b8f2c93-8057-4bdd-9be5-5b6883737099", "fa89699b-61b9-497d-b1ac-972623f3c0ce" ]
}
Status Code |
Description |
|---|---|
200 |
Metadata migration tasks deleted in batches. |
See Error Codes.