Skip to main content

eligability

Creates, updates, deletes, gets or lists an eligability resource.

Overview

Nameeligability
TypeResource
Idcloudflare.alerting.eligability

Fields

The following fields are returned by SELECT queries:

Get delivery mechanism eligibility response

NameDatatypeDescription
errorsarray
messagesarray
resultobject
successbooleanWhether the API call was successful (true)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idGet a list of all delivery mechanism types for which an account is eligible.

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

Get a list of all delivery mechanism types for which an account is eligible.

SELECT
errors,
messages,
result,
success
FROM cloudflare.alerting.eligability
WHERE account_id = '{{ account_id }}' -- required
;