List mountable topics

GET /v1/topics/mountable

List mountable topics available in object storage.

Responses

  • 200 application/json

    List of mountable topics

    Hide response attribute Show response attribute object
    • topics array[object]
      Hide topics attributes Show topics attributes object
      • topic_location string

        Unique topic location in object storage with the format <topic-name>/<cluster-uuid>/<initial-revision>. Redpanda assigns the number initial-revision to a topic upon creation.

      • topic string

        Topic name

      • ns string

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

GET /v1/topics/mountable
curl \
 --request GET 'http://localhost:9644/v1/topics/mountable'
Response examples (200)
{
  "topics": [
    {
      "topic_location": "string",
      "topic": "string",
      "ns": "string"
    }
  ]
}