limits
Creates, updates, deletes, gets or lists a limits resource.
Overview
| Name | limits |
| Type | Resource |
| Id | cloudflare.accounts.limits |
Fields
The following fields are returned by SELECT queries:
- list
Get sending limits response
| Name | Datatype | Description |
|---|---|---|
quota | object | The resolved daily sending quota for the account. Null when the quota is not yet available. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Returns the current daily sending quota for the account. Null when the quota is not yet available. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
Returns the current daily sending quota for the account. Null when the quota is not yet available.
SELECT
quota
FROM cloudflare.accounts.limits
WHERE account_id = '{{ account_id }}' -- required
;