Skip to main content

raw

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

Overview

Nameraw
TypeResource
Idcloudflare.email_security.raw

Fields

The following fields are returned by SELECT queries:

Raw email content.

NameDatatypeDescription
rawstringA UTF-8 encoded eml file of the email.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, investigate_idReturns the raw eml of any non-benign message.

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.
investigate_idstring

SELECT examples

Returns the raw eml of any non-benign message.

SELECT
raw
FROM cloudflare.email_security.raw
WHERE account_id = '{{ account_id }}' -- required
AND investigate_id = '{{ investigate_id }}' -- required
;