v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0172165343.2 KB
Msgs

Sink List

List sink configurations for a topic.

post/api/v1.msgs.sink.list

Request body

namespacestring nullable
topicstring required
limitinteger

Limit the number of returned items

iteratorstring nullable

The iterator returned from a prior invocation

Example request

{
  "namespace": "some_namespace",
  "topic": "some_topic_name"
}

Response

iteratorstring nullable
prev_iteratorstring nullable
doneboolean required

Example response

{
  "data": [
    {
      "topic": "some_topic_name",
      "consumer_group": "some_consumer_group",
      "config": {
        "data": {
          "url": "My name is ${name}!",
          "body": "My name is ${name}!"
        }
      }
    }
  ]
}