All Products
Search
Document Center

API Gateway:DescribeGroupQps

Last Updated:Jul 31, 2025

Queries the statistics on the number of requests directed to an API group within a period of time.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

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:
    • For mandatory resource types, indicate with a prefix of * .
    • 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
apigateway:DescribeGroupQpsget
*ApiGroup
acs:apigateway:{#regionId}:{#accountId}:apigroup/{#GroupId}
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
StartTimestringYes

The start time. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ

2022-08-12T06:09:52Z
EndTimestringYes

The end time. The time follows the ISO 8601 standard and UTC time is used. Format: YYYY-MM-DDThh:mm:ssZ

2022-08-23T07:27:44Z
StageNamestringYes

The environment to which the API group is published. Valid values:

  • RELEASE: the production environment
  • PRE: the staging environment
  • TEST: the test environment
RELEASE
GroupIdstringYes

The API group ID.

264c60db9f764345a13ac5c825b229b9

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The request ID.

D6E46F10-F26C-4AA0-BB69-FE2743D9AE62
GroupQpsarray<object>

The number of requests directed to the API group.

MonitorItemobject
ItemValuestring

The number of requests at the specified point in time.

17
ItemTimestring

The point in time.

2023-08-02T09:15:00Z

Examples

Sample success responses

JSONformat

{
  "RequestId": "D6E46F10-F26C-4AA0-BB69-FE2743D9AE62",
  "GroupQps": {
    "MonitorItem": [
      {
        "ItemValue": 17,
        "ItemTime": "2023-08-02T09:15:00Z"
      }
    ]
  }
}

Error codes

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

Change history

Change timeSummary of changesOperation
2024-11-14API Description UpdateView Change Details