Skip to content
Merged
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
12 changes: 6 additions & 6 deletions main/docs/customize/forms/flows/integrations/auth0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ Send a custom API request to Auth0 API endpoints.
Path
</td>
<td>
The API endpoint absolute pathname.
The API endpoint absolute pathname.
<br/>( Example: <code>/api/v2/organizations</code> )
<br/> <b>Note:</b> Some endpoints, for example: <a href="https://auth0.com/docs/api/management/v2/users/get-users-by-id"> Get a user </a>, require URI encoded parameters when not using alphanumeric characters, such as: <code>-</code>, <code>.</code>, <code>_</code>, or <code>~</code>, <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-2.3"> characters </a>).
<br/> <b>Note:</b> Some endpoints, for example: <a href="https://auth0.com/docs/api/management/v2/users/get-users-by-id"> Get a user </a>, require URI encoded parameters when not using alphanumeric characters, such as: <code>-</code>, <code>.</code>, <code>_</code>, or <code>~</code>, <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-2.3"> characters </a>).
<br/>To do this, you can use the encodeURIComponent function: <br/>`{{ functions.encodeURIComponent(context.user.user_id) }}`
</td>
</tr>
Expand All @@ -144,7 +144,7 @@ The API endpoint absolute pathname.
Method
</td>
<td>
Available HTTP methods include:
Available HTTP methods include:
<ul>
<li><code>GET</code></li>
<li><code>POST</code></li>
Expand Down Expand Up @@ -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).

<Warning>
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.
</Warning>

<Frame>![](/docs/images/forms/flows/integrations/auth0-notifications-send-email.png)</Frame>
Expand All @@ -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}}`. |
Expand Down