Modifying a Consumer Group
Function
This API is used to modify parameters of a specified consumer group.
URI
PUT /v2/{project_id}/instances/{instance_id}/groups/{group}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. |
instance_id |
Yes |
String |
Instance ID. |
group |
Yes |
String |
Consumer group name. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
enabled |
No |
Boolean |
Enabled or not. |
broadcast |
No |
Boolean |
Whether to broadcast. |
brokers |
No |
Array of strings |
List of associated brokers. |
name |
No |
String |
Consumer group name. |
retry_max_time |
No |
Number |
Maximum number of retries. |
from_beginning |
No |
Boolean |
Whether consumption starts from the beginning. |
Response Parameters
None
Example Requests
Modifying a consumer group
PUT https://{endpoint}/v2/{project_id}/instances/{instance_id}/groups/{group} { "name" : "consumer-group-test", "enabled" : true, "retry_max_time" : 16, "from_beginning" : true, "broadcast" : true }
Example Responses
None
Status Codes
Status Code |
Description |
---|---|
204 |
The operation is successful. |
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.