更新时间:2025-06-17 GMT+08:00
        
          
          
        
      
      
      
      
      
      
      
      
  
      
      
      
        
Kafka实例批量删除Topic
功能介绍
该接口用于向Kafka实例批量删除Topic。
请求消息
请求参数
参数说明见表2。
请求示例
POST https://{dms_endpoint}/v1.0/{project_id}/instances/{instance_id}/topics/delete
{
  "topics" : ["hah", "aabb"]
 }
 响应消息
响应参数
参数说明见表3。
| 参数 | 类型 | 说明 | 
|---|---|---|
| id | String | Topic名称 | 
| success | Boolean | 是否删除成功。 | 
响应示例
{
  "topics" : [{
      "id" : "haha",
      "success" : true
    }, {
      "id" : "aabb",
      "success" : true
    }
  ]
}
 
   父主题: 实例管理类接口
  
  
     
      