> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Access Authentication Logs

Get the Zero Trust Access authentication audit logs for an account.

<Note>
  External Documentation

  To learn more, visit the [Cloudflare documentation](https://developers.cloudflare.com/api/resources/zero_trust/subresources/access/subresources/logs/subresources/access_requests/methods/list/).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                  |
  | ---------------- | ------------------------------------------------------------ |
  | Account ID       | Your Cloudflare Account ID.                                  |
  | Fields           | A comma-separated list of fields to include in the response. |
  | Return All Pages | Automatically fetch all resources, page by page.             |
  | Since            | The earliest event timestamp to query.                       |
  | Sort Order       | Select the chronological sorting order for the logs.         |
  | Until            | The latest event timestamp to query.                         |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                      |
  | -------------- | ------------------------------------------------------------------------------------------------ |
  | Email          | Filter by user email.<br /><br />The match mode is controlled by the `Email Operator` parameter. |
  | Email Operator | Select the operator for the `Email` filter.                                                      |
  | Limit          | The maximum number of log entries to return.                                                     |
  | Page           | The page number of results to show.                                                              |
  | Per Page       | The number of results per page.                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"errors": [
		{
			"code": 1000,
			"message": "message",
			"documentation_url": "documentation_url",
			"source": {
				"pointer": "pointer"
			}
		}
	],
	"messages": [
		{
			"code": 1000,
			"message": "message",
			"documentation_url": "documentation_url",
			"source": {
				"pointer": "pointer"
			}
		}
	],
	"success": true,
	"result": [
		{
			"action": "login",
			"allowed": true,
			"app_domain": "test.example.com/admin",
			"app_uid": "df7e2w5f-02b7-4d9d-af26-8d1988fca630",
			"connection": "saml",
			"created_at": "2014-01-01T05:20:00.12345Z",
			"ip_address": "198.41.129.166",
			"ray_id": "187d944c61940c77",
			"user_email": "user@example.com"
		}
	]
}
```

## Workflow Library Example

[List Access Authentication Logs with Cloudflare and Send Results Via Email](https://library.blinkops.com/workflows/list-access-authentication-logs-with-cloudflare-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-access-authentication-logs-with-cloudflare-and-send-results-via-email/canvas" />
</div>
