diff --git a/main/docs/customize/events.mdx b/main/docs/customize/events.mdx index c92e54e308..0b5b6f03d8 100644 --- a/main/docs/customize/events.mdx +++ b/main/docs/customize/events.mdx @@ -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: diff --git a/main/docs/customize/events/event-testing-observability-and-failure-recovery.mdx b/main/docs/customize/events/event-testing-observability-and-failure-recovery.mdx index 6a20cd9359..d0c78eb1d1 100644 --- a/main/docs/customize/events/event-testing-observability-and-failure-recovery.mdx +++ b/main/docs/customize/events/event-testing-observability-and-failure-recovery.mdx @@ -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 --- diff --git a/main/docs/customize/events/event-types.mdx b/main/docs/customize/events/event-types.mdx index 7b70eabdbe..08e8a0739b 100644 --- a/main/docs/customize/events/event-types.mdx +++ b/main/docs/customize/events/event-types.mdx @@ -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. diff --git a/main/docs/customize/events/events-best-practices.mdx b/main/docs/customize/events/events-best-practices.mdx index dfda73681c..6f626333f6 100644 --- a/main/docs/customize/events/events-best-practices.mdx +++ b/main/docs/customize/events/events-best-practices.mdx @@ -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 --- diff --git a/main/docs/customize/hooks/delete-hooks.mdx b/main/docs/customize/hooks/delete-hooks.mdx index 5895d427e1..f834993229 100644 --- a/main/docs/customize/hooks/delete-hooks.mdx +++ b/main/docs/customize/hooks/delete-hooks.mdx @@ -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"; diff --git a/main/docs/customize/hooks/hook-secrets.mdx b/main/docs/customize/hooks/hook-secrets.mdx index adbfb72520..47d4b8068c 100644 --- a/main/docs/customize/hooks/hook-secrets.mdx +++ b/main/docs/customize/hooks/hook-secrets.mdx @@ -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 --- @@ -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) \ No newline at end of file +* [Auth0 Hooks](/docs/customize/hooks) diff --git a/main/docs/customize/hooks/view-logs-for-hooks.mdx b/main/docs/customize/hooks/view-logs-for-hooks.mdx index ebcffc72f4..0c58e58c34 100644 --- a/main/docs/customize/hooks/view-logs-for-hooks.mdx +++ b/main/docs/customize/hooks/view-logs-for-hooks.mdx @@ -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 --- @@ -29,4 +29,4 @@ From the Dashboard, you can view real-time logging information for hooks (and al ![Auth0 Hooks select a Hook](/docs/images/cdy7uua7fh8z/2y2R713TkAvQWIMZPMd1zh/bf0a657261f2d090492660ea5962e0a3/dashboard-hooks-list.png) 2. In the top right corner of the Hooks Editor, select the logs icon. - ![Auth0 Hook Editor](/docs/images/cdy7uua7fh8z/26u71QdXxZxg5zIH8SJQAg/e9bbd25b99d9b8fd44c281b6de83a5a3/dashboard-hooks-edit_menu.png) \ No newline at end of file + ![Auth0 Hook Editor](/docs/images/cdy7uua7fh8z/26u71QdXxZxg5zIH8SJQAg/e9bbd25b99d9b8fd44c281b6de83a5a3/dashboard-hooks-edit_menu.png) diff --git a/main/docs/customize/rules/cache-resources.mdx b/main/docs/customize/rules/cache-resources.mdx index c9e167a7e8..fa3304f20f 100644 --- a/main/docs/customize/rules/cache-resources.mdx +++ b/main/docs/customize/rules/cache-resources.mdx @@ -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 --- @@ -43,4 +43,4 @@ function query(db, cb){ -To learn more about using MongoDB, read [the MongoDB Manual](https://docs.mongodb.com/manual/). \ No newline at end of file +To learn more about using MongoDB, read [the MongoDB Manual](https://docs.mongodb.com/manual/). diff --git a/main/docs/customize/rules/debug-rules.mdx b/main/docs/customize/rules/debug-rules.mdx index 096ff0f572..c24e710b8f 100644 --- a/main/docs/customize/rules/debug-rules.mdx +++ b/main/docs/customize/rules/debug-rules.mdx @@ -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 --- @@ -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). \ No newline at end of file +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). diff --git a/main/docs/customize/rules/use-management-api.mdx b/main/docs/customize/rules/use-management-api.mdx index 6b7381546a..fe95588a55 100644 --- a/main/docs/customize/rules/use-management-api.mdx +++ b/main/docs/customize/rules/use-management-api.mdx @@ -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 --- diff --git a/main/docs/deploy-monitor/deploy-private-cloud.mdx b/main/docs/deploy-monitor/deploy-private-cloud.mdx index 39638b2830..052343369b 100644 --- a/main/docs/deploy-monitor/deploy-private-cloud.mdx +++ b/main/docs/deploy-monitor/deploy-private-cloud.mdx @@ -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 --- @@ -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). \ No newline at end of file +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).