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}
|
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
|
Parameter |
Type |
Description |
|---|---|---|
|
enabled |
Boolean |
Definition Whether consumption is allowed. Range |
|
broadcast |
Boolean |
Definition Whether to enable broadcast. Range |
|
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 |
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.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.