Deleting Topics in a Kafka Instance in Batches
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.
Function
This API is used to delete topics in a Kafka instance in batches.
Request
Request parameters
Table 2 describes the parameter.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| topics | Array | Yes | Indicates the list of topics to be deleted. |
Example request
{
"topics" : ["hah", "aabb"]
} Response
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
}
]
} Status Code
Table 5 describes the status code of successful operations. For details about other status codes, see Status Code.
Last Article: Querying a Topic in a Kafka Instance
Next Article: APIs for Using Instances
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.