Skip to main content

trace

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

Overview

Nametrace
TypeResource
Idcloudflare.email_security.trace

Fields

The following fields are returned by SELECT queries:

Email trace.

NameDatatypeDescription
inboundobject
outboundobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, investigate_idRetrieves delivery and processing trace information for an email message. Shows the delivery path, retraction history, and move operations performed on the message. Useful for debugging delivery issues.

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

Retrieves delivery and processing trace information for an email message. Shows the delivery path, retraction history, and move operations performed on the message. Useful for debugging delivery issues.

SELECT
inbound,
outbound
FROM cloudflare.email_security.trace
WHERE account_id = '{{ account_id }}' -- required
AND investigate_id = '{{ investigate_id }}' -- required
;