Unmount topics from a cluster

POST /v1/topics/unmount

Unmount provided list of topics from a cluster to object storage.

application/json

Body Required

List of topics to unmount

  • topic string Required

    Topic name

  • ns string

    Topic namespace. If not present, it is assumed that the topic is in the kafka namespace.

Responses

  • 200 application/json

    Underlying migration information

    Hide response attribute Show response attribute object
    • id integer(int32)
POST /v1/topics/unmount
curl \
 --request POST 'http://localhost:9644/v1/topics/unmount' \
 --header "Content-Type: application/json" \
 --data '[{"topic":"string","ns":"string"}]'
Request examples
[
  {
    "topic": "string",
    "ns": "string"
  }
]
Response examples (200)
{
  "id": 42
}