Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main/docs/customize/events.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Events
description: Use real-time notifications of events on your Auth0 tenant to orchestrate changes to external apps or third-party services.
description: Understand Auth0 Events, an API-based mechanism for streaming real-time notifications of tenant changes like user creation to external systems, identity correlation, and workflow orchestration.
---

Events are real-time notifications about specific actions that have occurred within your Auth0 tenant. You can use events in two ways:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn more about testing and managing your events and event streams.
description: Test an Auth0 event stream, monitor delivery failutes by polling the Deliveries endpoint, and recover missed events with a single call and batch Redelivery APIs to keep your event stream reliable.
title: Event Testing, Observability, and Failure Recovery
---

Expand Down
2 changes: 1 addition & 1 deletion main/docs/customize/events/event-types.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Event Types
description: View the Event object schema for supported event types.
description: Understand the the cloud events schema Auth0 uses to publish event objects, including required fields and the user event data payload, so you can build event streams that listen for supported event types.
---

You can create event streams that listen for different types of events, such as the creation of a new user profile. The sections below outline specific details for currently supported event types.
Expand Down
2 changes: 1 addition & 1 deletion main/docs/customize/events/events-best-practices.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Review best practices for using Events in Auth0
description: Review Auth0 Events best practices for reliably handling event streams, including acknowledging deliveries, using asynchronous queues, deduplicating and ordering events, and understanding retry and auto-disable behavior.
title: Events Best Practices
---

Expand Down
2 changes: 1 addition & 1 deletion main/docs/customize/hooks/delete-hooks.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn how to delete Hooks using the Dashboard and Management API.
description: Delete an Auth0 Hook you no longer need using the Dashboard or a `DELETE` call to the Management API Hooks endpoint with the `update:hooks` scope.
title: Delete Hooks
---
import {AuthCodeBlock} from "/snippets/AuthCodeBlock.jsx";
Expand Down
4 changes: 2 additions & 2 deletions main/docs/customize/hooks/hook-secrets.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn about integrated secret management used with Auth0 Hooks.
description: Understand integrated secret management for Auth0 Hooks, which securely stores secrets accessed via `context.webtask.secrets` and managed through the Dashboard, Management API, or Deploy CLI.
sidebarTitle: Overview
title: Hook Secrets
---
Expand Down Expand Up @@ -44,4 +44,4 @@ Hook Secrets can also be imported or exported using the [Deploy Command-Line Int

## Learn more

* [Auth0 Hooks](/docs/customize/hooks)
* [Auth0 Hooks](/docs/customize/hooks)
4 changes: 2 additions & 2 deletions main/docs/customize/hooks/view-logs-for-hooks.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn how to view logs for hooks using the Auth0 Dashboard.
description: View real-time logging output for an Auth0 Hook from the Dashboard Hooks Editor to inspect execution and troubleshoot behavior.
title: View Logs for Hooks
---
<Warning>
Expand Down Expand Up @@ -29,4 +29,4 @@ From the Dashboard, you can view real-time logging information for hooks (and al
<Frame>![Auth0 Hooks select a Hook](/docs/images/cdy7uua7fh8z/2y2R713TkAvQWIMZPMd1zh/bf0a657261f2d090492660ea5962e0a3/dashboard-hooks-list.png)</Frame>
2. In the top right corner of the Hooks Editor, select the logs icon.

<Frame>![Auth0 Hook Editor](/docs/images/cdy7uua7fh8z/26u71QdXxZxg5zIH8SJQAg/e9bbd25b99d9b8fd44c281b6de83a5a3/dashboard-hooks-edit_menu.png)</Frame>
<Frame>![Auth0 Hook Editor](/docs/images/cdy7uua7fh8z/26u71QdXxZxg5zIH8SJQAg/e9bbd25b99d9b8fd44c281b6de83a5a3/dashboard-hooks-edit_menu.png)</Frame>
4 changes: 2 additions & 2 deletions main/docs/customize/rules/cache-resources.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: How to cache expensive resources in your Rules code.
description: Cache expensive resources across Auth0 Rule executions using a persistent global object to avoid recreating them each run.
title: Cache Expensive Resources in Rules
---
<Warning>
Expand Down Expand Up @@ -43,4 +43,4 @@ function query(db, cb){



To learn more about using MongoDB, read [the MongoDB Manual](https://docs.mongodb.com/manual/).
To learn more about using MongoDB, read [the MongoDB Manual](https://docs.mongodb.com/manual/).
4 changes: 2 additions & 2 deletions main/docs/customize/rules/debug-rules.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn how to debug your Auth0 rules.
description: Debug an Auth0 Rule using `console.log` output surfaced through the Rules Editor Save and Try feature, Actions Real-time Logs, or the legacy Debug Rule CLI.
title: Debug Rules
---
<Warning>
Expand Down Expand Up @@ -34,4 +34,4 @@ The **Try this rule script** feature functions outside a specific client context

## Actions Real-time Logs

The Actions Real-time Logs displays all logs in real-time for all custom code in your account, which includes all `console.log` output and exceptions. To learn more, read [Actions Real-time Logs](/docs/customize/actions/actions-real-time-logs).
The Actions Real-time Logs displays all logs in real-time for all custom code in your account, which includes all `console.log` output and exceptions. To learn more, read [Actions Real-time Logs](/docs/customize/actions/actions-real-time-logs).
2 changes: 1 addition & 1 deletion main/docs/customize/rules/use-management-api.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Learn how to use the Management API from within rules.
description: Call the Auth0 Management API from within a Rule using the restricted `auth0 ManagementClient` object, or require a newer `node-auth0` version for additional endpoints and scopes.
title: Use the Management API from within Rules
---
<Warning>
Expand Down
4 changes: 2 additions & 2 deletions main/docs/deploy-monitor/deploy-private-cloud.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Describes Auth0 private cloud deployment options.
description: Compare Auth0 Private Cloud-managed service deployment options on AWS and Azure to choose a dedicated, isolated environment that meets your data-residency, performance, and guaranteed RPS requirements beyond the multi-tenant Public Cloud.
sidebarTitle: Overview
title: Private Cloud Deployments
---
Expand All @@ -18,4 +18,4 @@ The Auth0 private cloud can be deployed in the following ways:

We also provide [add-on features](/docs/deploy-monitor/deploy-private-cloud/private-cloud-add-on-features) that can complement your Auth0 Private Cloud deployment.

If you have specific support requirements or need more information about the Professional Services we offer, please [contact Auth0 Sales](https://auth0.com/contact-us).
If you have specific support requirements or need more information about the Professional Services we offer, please [contact Auth0 Sales](https://auth0.com/contact-us).
Loading