Msgs
Stream Receive
Receives messages from a topic using a consumer group.
Each consumer in the group reads from all partitions. Messages are locked by leases for the specified duration to prevent duplicate delivery within the same consumer group.
post/api/v1.msgs.stream.receive
Request body
Example request
{
"namespace": "some_namespace",
"topic": "some_topic_name",
"consumer_group": "some_consumer_group"
}Response
Example response
{
"msgs": [
{
"topic": "some_topic_name~0"
}
]
}