forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Chen, Junjie <chenjunjie@huawei.com> Co-committed-by: Chen, Junjie <chenjunjie@huawei.com>
13 KiB
13 KiB
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
POST https://{dms_endpoint}/v1.0/{project_id}/instances/{instance_id}/topics/delete { "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.
Parent topic: APIs for Managing Instances