GET /accounts/{account_id}/access/logs/access_requests

Gets a list of Access authentication audit logs for an account.

Servers

Path parameters

Name Type Required Description
account_id String Yes

Query parameters

Name Type Required Description
app_uidOp String No

Operator for the app_uid filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

country_codeOp String No

Operator for the country_code filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

app_typeOp String No

Operator for the app_type filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

since String No

The earliest event timestamp to query.

allowedOp String No

Operator for the allowed filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

fields String No

Comma-separated list of fields to include in the response. When omitted, all fields are returned.

ray_idOp String No

Operator for the ray_id filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

emailOp String No

Operator for the email filter. contains performs a substring (case-sensitive) match. When email_exact=true is also set, email_exact takes precedence and contains is ignored.

Valid values:

  • "contains"
  • "eq"
  • "neq"

Default value: "eq"

page Integer No

Default value: 1

user_idOp String No

Deprecated. Accepted for backward compatibility but no longer applied as a filter (the user_id parameter is itself deprecated).

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

limit Integer No

The maximum number of log entries to retrieve.

Default value: 25

email String No

Filter by user email. Match mode is controlled by emailOp (preferred) or the legacy email_exact flag.

  • Default (no emailOp, email_exact=false or unset): substring match — email=@example.com returns all events with that domain.
  • Exact match: set emailOp=eq (preferred) or email_exact=true — e.g. email=user@example.com&email_exact=true returns only that user.
  • Explicit substring match: set emailOp=contains (without email_exact=true). When both are set, email_exact=true takes precedence and the match is exact.
  • Exclusion: set emailOp=neq. With email_exact=true this is an exact-value exclusion; without it, a fuzzy substring exclusion.
direction String No

The chronological sorting order for the logs.

Valid values:

  • "desc"
  • "asc"

Default value: "desc"

per_page Integer No

Default value: 25

until String No

The latest event timestamp to query.

non_identityOp String No

Operator for the non_identity filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

email_exact Boolean No

When true, email is matched exactly instead of substring matching.

Default value: false

idpOp String No

Operator for the idp filter.

Valid values:

  • "eq"
  • "neq"

Default value: "eq"

user_id String No

Deprecated. Accepted for backward compatibility but no longer applied as a filter. Use email instead.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.