Updated on 2025-12-18 GMT+08:00

Querying a Consumer Group

Function

This API is used to query details about a specified consumer group.

URI

GET /v2/{project_id}/instances/{instance_id}/groups/{group}

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain it, see Obtaining a Project ID.

instance_id

Yes

String

Instance ID.

group

Yes

String

Consumer group name.

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response body parameters

Parameter

Type

Description

enabled

Boolean

Definition

Whether consumption is allowed.

Range

  • true: Yes

  • false: No

broadcast

Boolean

Definition

Whether to enable broadcast.

Range

  • true: Yes

  • false: No

brokers

Array of strings

Definition

List of associated brokers.

Range

N/A

name

String

Definition

Consumer group name.

Range

N/A

group_desc

String

Definition

Consumer group description.

Range

N/A

created_at

String

Definition

Creation time.

Range

N/A

retry_max_time

Integer

Definition

Maximum number of retries.

Range

N/A

permissions

Array of strings

Definition

Permission.

Range

N/A

consume_orderly

Boolean

Definition

Whether to enable orderly consumption.

Range

  • true: Yes

  • false: No

Example Requests

Querying details about a specified consumer group

GET https://{endpoint}/v2/{project_id}/instances/{instance_id}/groups/{group}

Example Responses

Status code: 200

Consumer group queried successfully.

{
  "name" : "test",
  "group_desc" : "group_description",
  "enabled" : true,
  "broadcast" : true,
  "permissions" : [ ],
  "retry_max_time" : 10,
  "consume_orderly" : false,
  "created_at" : 1764926280314
}

Status Codes

Status Code

Description

200

Consumer group queried successfully.

Error Codes

See Error Codes.