Get information about the quota group
GET
/admin/quota/groups/{quotagroup}
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”quotagroup
required
string
Quota group to query
Responses
Section titled “Responses”QuotaGroup
Media typeapplication/json
QuotaGroup represents a quota group
object
name
Name of the group
string
rules
Rules associated with the group
Array<object>
QuotaRuleInfo contains information about a quota rule
object
limit
The limit set by the rule
integer format: int64
name
Name of the rule (only shown to admins)
string
subjects
Subjects the rule affects
Array<string>
Examplegenerated
{ "name": "example", "rules": [ { "limit": 1, "name": "example", "subjects": [ "example" ] } ]}APIError is error format response
Media typeapplication/json
APIError is an api error with a message
object
message
string
url
string
Examplegenerated
{ "message": "example", "url": "example"}APIForbiddenError is a forbidden error response
Media typeapplication/json
object
message
string
url
string
Examplegenerated
{ "message": "example", "url": "example"}APINotFound is a not found error response
Media typeapplication/json
object
errors
Array<string>
message
string
url
string
Examplegenerated
{ "errors": [ "example" ], "message": "example", "url": "example"}