Msgs
Sink Configure
Create or update a sink for a topic. Overwrites any existing sink with the same id.
post/api/v1.msgs.sink.configure
Request body
Example request
{
"namespace": "some_namespace",
"topic": "some_topic_name",
"consumer_group": "some_consumer_group",
"config": {
"data": {
"url": "My name is ${name}!",
"body": "My name is ${name}!"
}
}
}Response
Example response
{
"topic": "some_topic_name",
"consumer_group": "some_consumer_group"
}