Get committed group offsets for given partitions.
GET
/consumers/{group_name}/instances/{instance}/offsets
curl \
--request GET 'http://{{Host}}/consumers/{group_name}/instances/{instance}/offsets' \
--header "Content-Type: application/vnd.kafka.v2+json"
Request examples
{
"partitions": [
{
"topic": "string",
"partition": 42
}
]
}
Response examples (200)
{
"offsets": [
{
"topic": "string",
"partition": 42,
"offset": 42,
"metadata": "string"
}
]
}
Response examples (404)
{
"error_code": 42,
"message": "string"
}