List the attachments affecting the organization's quota
GET
/orgs/{org}/quota/attachments
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” org
required
string
Name of the organization
Query Parameters
Section titled “ Query Parameters ” page
integer
Page number of results to return (1-based)
limit
integer
Page size of results
Responses
Section titled “ Responses ”QuotaUsedAttachmentList
Media type application/json
QuotaUsedAttachmentList represents a list of attachment counting towards a user’s quota
Array<object>
QuotaUsedAttachment represents an attachment counting towards a user’s quota
object
api_url
API URL for the attachment
string
contained_in
Context for the attachment: URLs to the containing object
object
api_url
API URL for the object that contains this attachment
string
html_url
HTML URL for the object that contains this attachment
string
name
Filename of the attachment
string
size
Size of the attachment (in bytes)
integer format: int64
Example generated
[ { "api_url": "example", "contained_in": { "api_url": "example", "html_url": "example" }, "name": "example", "size": 1 }]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"}