Skip to content

List the packages affecting the authenticated user's quota

GET
/user/quota/packages
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"
}
]

APIUnauthorizedError is a unauthorized error response

Media type application/json
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"
}