using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.Guardian.Factors.Phone.GetMessageTypesAsync(); }}
Retrieve list of phone-type MFA factors (i.e., sms and voice) that are enabled for your tenant.
GET
https://{tenantDomain}/api/v2
/
guardian
/
factors
/
phone
/
message-types
C#
using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.Guardian.Factors.Phone.GetMessageTypesAsync(); }}