eligability
Creates, updates, deletes, gets or lists an eligability resource.
Overview
| Name | eligability |
| Type | Resource |
| Id | cloudflare.alerting.eligability |
Fields
The following fields are returned by SELECT queries:
- list
Get delivery mechanism eligibility response
| Name | Datatype | Description |
|---|---|---|
errors | array | |
messages | array | |
result | object | |
success | boolean | Whether the API call was successful (true) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
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
;