Auth0Client.Management.Log (auth0_client v1.1.0)

Copy Markdown View Source

A module represeting log resource on Auth0

Summary

Functions

Get a log event by id

Retrieve the log entries that match the specified criteria

Functions

get(id)

Get a log event by id

iex> Auth0Client.Management.Log.get("90020200000000000000000000000000000000000000000000")

search(params)

Retrieve the log entries that match the specified criteria

Auth0 caps this at 100 records per request and 1,000 results overall, so paging past the thousandth entry returns nothing. For more than that, use checkpoint pagination — pass from and take — or a log stream.

include_totals is deprecated on this endpoint.

iex> Auth0Client.Management.Log.search(page: 1, fields: "user_name")
iex> Auth0Client.Management.Log.search(q: "type:f", take: 100)