Skip to main content

domain_history

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

Overview

Namedomain_history
TypeResource
Idcloudflare.intel.domain_history

Fields

The following fields are returned by SELECT queries:

Get Domain History response.

NameDatatypeDescription
categorizationsarray
domainstring (example: cloudflare.com)

Methods

The following methods are available for this resource:

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

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
domainstring

SELECT examples

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 }}'
;