trace
Creates, updates, deletes, gets or lists a trace resource.
Overview
| Name | trace |
| Type | Resource |
| Id | cloudflare.email_security.trace |
Fields
The following fields are returned by SELECT queries:
- list
Email trace.
| Name | Datatype | Description |
|---|---|---|
inbound | object | |
outbound | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, investigate_id | 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. |
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. |
investigate_id | string |
SELECT examples
- list
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
;