Skip to main content

limits

Creates, updates, deletes, gets or lists a limits resource.

Overview

Namelimits
TypeResource
Idcloudflare.accounts.limits

Fields

The following fields are returned by SELECT queries:

Get sending limits response

NameDatatypeDescription
quotaobjectThe resolved daily sending quota for the account. Null when the quota is not yet available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idReturns 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.

SELECT examples

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
;