Use Auth0's Unified Phone Experience for Multi-Factor Authentication
Before you start
To migrate to the Unified Phone Experience, you must:
Have Multi-Factor Authentication (MFA) SMS, Voice, or SMS+Voice notifications enabled and configured in your tenant, or
Have Passwordless SMS enabled and configured in your tenant
If you have not configured either MFA or Passwordless, read Configure Auth0's Unified Phone Experience to start from the beginning.
If you have both MFA and Passwordless integrations with different providers, you must use a Custom Phone Provider.
If you utilize Phone as ID, you are automatically using Auth0's Unified Phone Experience and no additional action is needed.
The Unified Phone Experience centralizes all your phone provider configurations in one location in your tenant. You won’t need to configure a phone provider multiple times for various phone authentication factors. To learn more about phone factors for MFA, read SMS and voice notifications for MFA.
If you already have a phone provider configured for Multi-Factor Authentication (MFA), you can migrate your configuration to the Unified Phone Experience and apply your configuration at the tenant-level.
Update your phone provider
To use the Unified Phone Experience, you need to:
Verify current settings
Configure your provider:
Configure Twilio
Configure a custom phone provider
Update your phone factors and delivery methods
Update Management API endpoints
Update Auth0 Actions triggers
Verify current settings
To verify your current MFA settings, navigate to Auth0 Dashboard > Security > Multi-factor Auth.
Select Phone Message.
If you are able to use the Unified Phone Experience, a banner advises you to configure a tenant-level provider:
Configure Twilio as a tenant-level provider
If you are using Twilio as your phone provider for Multi-Factor Authentication, you must add the Twilio SID and AuthToken to the Unified Phone Experience. You can copy the Twilio SID from your existing configuration, but you will need to get the value of the AuthToken from Twilio.
Navigate to Branding > Phone Provider.
Select and configure your provider:
Choose Twilio as your phone provider.
Choose your delivery methods.
Enter Twilio settings.
Save your changes.
Select Send Test Message to test the tenant-level provider before using it in a production environment.
Enable a tenant-level provider.
For MFA, navigate to Security > Multi-factor Auth > Phone Message.
Select Use Tenant-level Messaging Provider.
Save your changes.
Configure a custom provider with Auth0 Actions
The Unified Phone Experience uses the custom-phone-provider
Actions Trigger for phone notifications rather than the send-phone-message
Actions Trigger for custom phone notifications.
You cannot directly migrate your send-phone-message
Actions trigger to the custom-phone-provider
Actions trigger because:
There is no 1:1 mapping between message and notification types.
Migrating secrets and dependencies associated with the send-phone-message Actions trigger could cause security concerns or break the tenant experience.
Actions can support more than one trigger and could be difficult to migrate. For example, Actions can support both the
send-phone-message
andpost-login
triggers.The
send-phone-message
andcustom-phone-provider
Actions triggers support different event types:send-phone-message
supports the SMS and Voice message types. To learn more, read Action triggers: send-phone-message Event Object.custom-phone-provider
supports theotp_verify
,otp_enroll
,blocked_account
,change_password
, andpassword_breach
notification types. To learn more, read Actions triggers: custom-phone-provider Event Object.
You can only set one Action per custom phone provider. If you have already set an Action for a custom phone provider, you must disable it before associating it with a new Action.
As a result, you need to translate your existing send-phone-message
into a new custom-phone-provider
using the new contextual variables:
send-phone-message context object |
custom-phone-provider context object |
Status |
---|---|---|
text |
notification.as_text and notification.as_voice |
Updated |
message_type |
notification.message_type
|
Updated |
action |
notification.delivery_method |
Updated |
language |
notification.locale |
Updated |
code |
notification.code |
Updated |
recipient |
notification.recipient |
Updated |
send-phone-message context object |
Tenant-level provider context object | Status |
---|---|---|
ip |
ip |
Unchanged |
user_agent |
user_agent |
Unchanged |
language |
language |
Updated |
method |
method optional |
Updated |
hostname |
hostname optional |
Updated |
geoip |
geoip |
Updated |
send-phone-message context object |
Tenant-level provider context object | Status |
---|---|---|
tenant.id |
tenant |
Updated |
N/A | tenant.home_url |
New |
N/A | tenant.logo_url |
New |
N/A | tenant.support_email |
New |
N/A | tenant.support_url |
New |
send-phone-message context object |
Tenant-level provider context object | Status |
---|---|---|
client.client_metadata |
client.metadata |
Updated |
client.client_id |
client.client_id |
Unchanged |
client.name |
client.name |
Unchanged |
send-phone-message context object |
Tenant-level provider context object | Status |
---|---|---|
user.user_id |
user.user_id |
Unchanged |
user.name |
user.name |
Unchanged |
user.email |
user.email |
Unchanged |
user.app_metadata |
user.app_metadata |
Unchanged |
user.user_metadata |
user.user_metadata |
Unchanged |
user.email_verified |
user.email_verified |
Unchanged |
user.phone_number |
user.phone_number |
Unchanged |
user.phone_verified |
user.phone_verified |
Unchanged |
user.picture |
user.picture |
Unchanged |
user.created_at |
user.created_at |
Unchanged |
user.updated_at |
user.updated_at |
Unchanged |
user.multifactor |
user.multifactor |
Unchanged |
user.identities |
N/A | Removed |
user.family_name |
user.family_name |
Unchanged |
user.given_name |
user.given_name |
Unchanged |
user.nickname |
user.nickname |
Unchanged |
user.username |
user.username |
Unchanged |
N/A | user.login_count |
New |
Review the custom phone provider example:
const { fetch } = require('undici');
/**
* Handler to be executed while sending a phone notification
* @param {Event} event - Details about the user and the context in which they are logging in.
* @param {CustomPhoneProviderAPI} api - Methods and utilities to help change the behavior of sending a phone notification.
*/
exports.onExecuteCustomPhoneProvider = async (event, api) => {
if (event.notification.message_type.startsWith('otp')) {
const body = {
from: event.notification.from,
action: event.notification.message_type === 'otp_verify' ? 'second-factor-authenticator' : 'enrollment',
language: event.notification.locale,
recipient: event.notification.recipient,
message_type: event.notification.delivery_method,
text: event.notification.as_text,
code: event.notification.code,
};
const response = await fetch(event.secrets['MY_ENDPOINT'], {
method: 'POST',
headers: {
authorization: `Bearer ${event.secrets['MY_SECRET']}`,
},
body: JSON.stringify(body),
});
console.log(response.status); // 200
console.log(await response.text()); // request's response body!
}
return;
};
feedbackSection.helpful
Configure MFA custom-phone-provider
To continue and configure your MFA custom-phone-provider
trigger:
Navigate to Branding > Phone Provider.
Select your provider:
Choose Custom.
Under Provider Configuration, add your translated
send-phone-message
Action code in the embedded code editor.
Save your changes.
Select Send Test Message to test the tenant-level provider before using it in a production environment.
Navigate back to Security > Multi-factor Auth > Phone Message to enable the Use Tenant-level Messaging Provider.
Save your changes.
Update MFA phone factors and delivery methods
If you want to update the current notification MFA factor(s) to a different type during the migration to the Unified Phone Experience, some configuration changes may be necessary.
Current MFA Phone factors | Desired MFA factors | Tenant-level delivery method | User action |
---|---|---|---|
SMS | Voice | SMS | User must update tenant-level provider to allow for desired MFA phone factor |
SMS | Voice | SMS + Voice | None |
SMS | SMS + Voice | SMS | User must update tenant-level provider to allow for desired MFA phone factor |
SMS | SMS + Voice | SMS + Voice | None |
Voice | SMS | SMS + Voice | User must update tenant-level provider to allow for desired MFA phone factor |
Voice | SMS | SMS + Voice | None |
Voice | SMS + Voice | Voice | User must update tenant-level provider to allow for desired MFA phone factor |
Voice | SMS + Voice | SMS + Voice | None |
SMS + Voice | SMS | SMS + Voice | None |
SMS + Voice | Voice | SMS + Voice | None |
If you want to update the current tenant-level phone provider delivery method(s) to a different type during the migration to the Unified Phone Experience, some configuration changes may be necessary.
MFA Phone factors | Current tenant-level delivery method | Desired tenant-level delivery method | User action |
---|---|---|---|
SMS | SMS | SMS + Voice | None |
SMS | SMS | Voice | User must update MFA phone factors to be a subset of the delivery methods enabled for the tenant-level provider |
SMS | SMS + Voice | Voice | User must update MFA phone factors to be a subset of the delivery methods enabled for the tenant-level provider |
SMS | SMS + Voice | SMS | None |
Voice | Voice | SMS | User must update MFA phone factors to be a subset of the delivery methods enabled for the tenant-level provider |
Voice | Voice | SMS + Voice | None |
Voice | SMS + Voice | SMS | User must update MFA phone factors to be a subset of the delivery methods enabled for the tenant-level provider |
Voice | SMS + Voice | Voice | None |
SMS + Voice | SMS + Voice | SMS | None |
SMS + Voice | SMS + Voice | Voice | None |
Update Guardian endpoints with Management API
The Unified Phone Experience uses specific endpoints for notifications. If you’ve been using Auth0 Guardian for push notifications and one-time passwords, you must update your configuration to use the new Phone Provider Branding endpoints.
The following Guardian endpoints will no longer work with the Unified Phone Experience:
Send-phone-message Guardian endpoint | Scope |
---|---|
read:guardian_factors |
|
read:guardian_factors |
|
update:guardian_factors |
|
update:guardian_factors |
|
read:guardian_factors |
|
update:guardian_factors |
Replace the Guardian endpoints with the new Phone Provider Branding endpoints and scopes:
Phone Provider Branding endpoint | Scope |
---|---|
read:phone_providers |
|
update:phone_providers |
|
create:phone_providers |
|
read:phone_templates |
|
update:phone_templates |
|
create:phone_templates |
|
delete:phone_templates |
|
delete:phone_providers |
The following Guardian endpoints work with the Unified Phone Experience and will not need to be updated:
MFA phone factor endpoint | Scope |
---|---|
read:guardian_factors |
|
update:guardian_factors |
|
read:guardian_factors |
|
update:guardian_factors |
Disable phone provider
If you configure the Unified Phone Experience and then disable it, existing integrations with your phone provider, including MFA, could break.
