All Products
Search
Document Center

:ListConsumerGroupSubscriptions

Last Updated:Sep 24, 2024

Queries the subscriptions of a consumer group.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
rocketmq:ListConsumerGroupSubscriptionslist
  • ConsumerGroup
    acs:rocketmq:{#regionId}:{#accountId}:instance/{#InstanceId}/consumergroup/{#ConsumerGroupId}
    none
none

Request syntax

GET /instances/{instanceId}/consumerGroups/{consumerGroupId}/subscriptions HTTP/1.1

Request parameters

ParameterTypeRequiredDescriptionExample
instanceIdstringYes

The ID of the ApsaraMQ for RocketMQ instance.

rmq-cn-tl32wwz1r05
consumerGroupIdstringYes

The ID of the consumer group whose subscriptions you want to query.

If you do not configure this parameter, the subscriptions of all consumer groups on the specified instance are queried.

PRINT_RETRY_CONSUMER

Response parameters

ParameterTypeDescriptionExample
object

Result<List>

requestIdstring

The request ID.

5F4D9D5F-625B-59FF-BD4F-DA8284575DB4
successboolean

Indicates whether the request was successful.

true
dataarray<object>

The returned data.

dataobject

The subscriptions of the consumer group.

consumerGroupIdstring

The ID of the consumer group.

CID-TEST
topicNamestring

The topic to which the consumer group subscribes.

topic_test
messageModelstring

The consumption mode of the consumer group. Valid values:

  • BROADCASTING: broadcasting consumption
  • CLUSTERING: clustering consumption
BROADCASTING
subscriptionStatusstring

The subscription status. Valid values:

  • ONLINE: The consumer group is online. If the consumer group contains multiple consumers, this value is returned as long as one of the consumers is online.
  • OFFLINE: The consumer group is offline. If the consumer group contains multiple consumers, this value is returned only if all consumers are offline.
ONLINE
filterExpressionstring

The filter expression.

*
filterExpressionTypestring

The type of the filter expression. Valid values:

  • SQL: filters messages by using SQL expressions.
  • TAG: filters messages by using tags.
SQL
topicCreatedboolean

Indicates whether the topic is created.

true
consistencyboolean

Indicates whether message consumption is consistent. Valid values:

  • false: Unconsumed messages exist in the consumer group.
  • true: No unconsumed message exists in the consumer group.
true
codestring

The error code.

MissingInstanceId
messagestring

The error message.

Parameter instanceId is mandatory for this action .
httpStatusCodeinteger

The HTTP status code.

200
dynamicCodestring

The dynamic error code.

InstanceId
dynamicMessagestring

The dynamic error message.

InstanceId

Examples

Sample success responses

JSONformat

{
  "requestId": "5F4D9D5F-625B-59FF-BD4F-DA8284575DB4",
  "success": true,
  "data": [
    {
      "consumerGroupId": "CID-TEST",
      "topicName": "topic_test",
      "messageModel": "BROADCASTING",
      "subscriptionStatus": "ONLINE",
      "filterExpression": "*",
      "filterExpressionType": "SQL",
      "topicCreated": true,
      "consistency": true
    }
  ],
  "code": "MissingInstanceId",
  "message": "Parameter instanceId is mandatory for this action .",
  "httpStatusCode": 200,
  "dynamicCode": "InstanceId",
  "dynamicMessage": "InstanceId"
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2024-09-09The internal configuration of the API is changed, but the call is not affectedView Change Details
2024-05-28The response structure of the API has changedView Change Details