This API is out-of-date and may not be maintained in the future. Please use the API described in Batch Deleting Topics of a Kafka Instance.
This API is used to delete topics in a Kafka instance in batches.
Request parameters
Table 2 describes the parameter.
Parameter |
Type |
Mandatory |
Description |
---|---|---|---|
topics |
Array |
Yes |
Indicates the list of topics to be deleted. |
Example request
POST https://{dms_endpoint}/v1.0/{project_id}/instances/{instance_id}/topics/delete { "topics" : ["hah", "aabb"] }
Response parameters
Table 3 describes the parameter.
Parameter |
Type |
Description |
---|---|---|
id |
String |
Indicates the topic name. |
success |
Boolean |
Indicates whether the topics are deleted. |
Example response
{ "topics" : [{ "id" : "haha", "success" : true }, { "id" : "aabb", "success" : true } ] }
Table 5 describes the status code of successful operations. For details about other status codes, see Status Code.