Skip to content

List the packages affecting the organization's quota

GET
/orgs/{org}/quota/packages
org
required
string

Name of the organization

page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

QuotaUsedPackageList

Media type application/json

QuotaUsedPackageList represents a list of packages counting towards a user’s quota

Array<object>

QuotaUsedPackage represents a package counting towards a user’s quota

object
html_url

HTML URL to the package version

string
name

Name of the package

string
size

Size of the package version

integer format: int64
type

Type of the package

string
version

Version of the package

string
Example generated
[
{
"html_url": "example",
"name": "example",
"size": 1,
"type": "example",
"version": "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"
}