domain_history
Creates, updates, deletes, gets or lists a domain_history resource.
Overview
| Name | domain_history |
| Type | Resource |
| Id | cloudflare.intel.domain_history |
Fields
The following fields are returned by SELECT queries:
- list
Get Domain History response.
| Name | Datatype | Description |
|---|---|---|
categorizations | array | |
domain | string | (example: cloudflare.com) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | domain | Gets historical security threat and content categories currently and previously assigned to a domain. |
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. |
domain | string |
SELECT examples
- list
Gets historical security threat and content categories currently and previously assigned to a domain.
SELECT
categorizations,
domain
FROM cloudflare.intel.domain_history
WHERE account_id = '{{ account_id }}' -- required
AND domain = '{{ domain }}'
;