Skip to content

Get information about the quota group

GET
/admin/quota/groups/{quotagroup}
quotagroup
required
string

Quota group to query

QuotaGroup

Media type application/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>
Example generated
{
"name": "example",
"rules": [
{
"limit": 1,
"name": "example",
"subjects": [
"example"
]
}
]
}

APIError is error format response

Media type application/json

APIError is an api error with a message

object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}

APIForbiddenError is a forbidden error response

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}

APINotFound is a not found error response

Media type application/json
object
errors
Array<string>
message
string
url
string
Example generated
{
"errors": [
"example"
],
"message": "example",
"url": "example"
}