v51

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

Stream Commit

Commits an offset for a consumer group on a specific partition.

The topic must be a partition-level topic (e.g. ns:my-topic~3). The offset is the last successfully processed offset; future receives will start after it.

post/api/v1.msgs.stream.commit

Request body

namespacestring nullable
topicstring required
consumer_groupstring required
offsetinteger required

Example request

{
  "namespace": "some_namespace",
  "topic": "some_topic_name~0",
  "consumer_group": "some_consumer_group"
}

Response

MsgStreamCommitOut required