intel_indicator_feeds
Creates, updates, deletes, gets or lists an intel_indicator_feeds resource.
Overview
| Name | intel_indicator_feeds |
| Type | Resource |
| Id | cloudflare.intel.intel_indicator_feeds |
Fields
The following fields are returned by SELECT queries:
- list_by_account
Get indicator feeds response
| Name | Datatype | Description |
|---|---|---|
id | integer | The unique identifier for the indicator feed |
name | string | The name of the indicator feed |
created_on | string (date-time) | The date and time when the data entry was created |
description | string | The description of the example test |
is_attributable | boolean | Whether the indicator feed can be attributed to a provider |
is_downloadable | boolean | Whether the indicator feed can be downloaded |
is_public | boolean | Whether the indicator feed is exposed to customers |
modified_on | string (date-time) | The date and time when the data entry was last modified |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | account_id | Retrieves details for all accessible custom threat indicator feeds. |
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_by_account
Retrieves details for all accessible custom threat indicator feeds.
SELECT
id,
name,
created_on,
description,
is_attributable,
is_downloadable,
is_public,
modified_on
FROM cloudflare.intel.intel_indicator_feeds
WHERE account_id = '{{ account_id }}' -- required
;