diff --git a/main/docs/customize/forms/flows/integrations/auth0.mdx b/main/docs/customize/forms/flows/integrations/auth0.mdx
index 3c60767e3..ef99df960 100644
--- a/main/docs/customize/forms/flows/integrations/auth0.mdx
+++ b/main/docs/customize/forms/flows/integrations/auth0.mdx
@@ -133,9 +133,9 @@ Send a custom API request to Auth0 API endpoints.
Path
-The API endpoint absolute pathname.
+The API endpoint absolute pathname.
( Example: /api/v2/organizations )
- Note: Some endpoints, for example: Get a user , require URI encoded parameters when not using alphanumeric characters, such as: -, ., _, or ~, characters ).
+ Note: Some endpoints, for example: Get a user , require URI encoded parameters when not using alphanumeric characters, such as: -, ., _, or ~, characters ).
To do this, you can use the encodeURIComponent function: `{{ functions.encodeURIComponent(context.user.user_id) }}`
|
@@ -144,7 +144,7 @@ The API endpoint absolute pathname.
Method
-Available HTTP methods include:
+Available HTTP methods include:
GET
POST
@@ -177,10 +177,10 @@ Review [Auth0 Management API](https://auth0.com/docs/api/management/v2/introduct
### Send email
-Send a custom email using your [configured email provider.](https://auth0.com/docs/customize/email/configure-a-custom-email-provider)
+Send a custom email using your [configured email provider](https://auth0.com/docs/customize/email).
-A [Custom Email Provider](https://auth0.com/docs/customize/email/configure-a-custom-email-provider) must be enabled before using this action.
+[Email Provider](https://auth0.com/docs/customize/email) must be enabled before using this action.

@@ -189,7 +189,7 @@ A [Custom Email Provider](https://auth0.com/docs/customize/email/configure-a-cus
| Parameter | Description |
|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Use custom sender email | By default, we will use the sender email you have configured in your custom email provider settings. Enable this option if you want to use a different sender email or name. |
+| Use custom sender email | By default, we will use the sender email you have configured in your customized email provider settings. Enable this option if you want to use a different sender email or name. |
| Recipient email | The recipient’s email |
| Subject | The email subject |
| Custom variable | Add custom variables to be inserted in your email template. Once configured, you can reference them using `{{custom_vars.your_variable_key}}`. |
|