Quotas
Quotas holds document send credits and key contact information for an Organisation. Available to all users (unlike Billing which requires billing permission).
Fields
| Field | Type | Description |
|---|---|---|
docSendCredit | Int | Document send credit (null = unlimited / payments in arrears) |
bulkSendCredit | Int | Bulk send credit |
contactPrimaryEmail | AWSEmail | Primary contact email |
contactSecondaryEmail | AWSEmail | Secondary contact email |
contactTechnicalEmail | AWSEmail | Technical contact email |
Query
Accessed via Organisation.quotas:
query GetQuotas($orgId: ID) {
organisation(id: $orgId) {
quotas {
docSendCredit
bulkSendCredit
contactPrimaryEmail
}
}
}
Related
- Organisation — the parent organisation
- Billing — detailed billing information (requires permission)