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.GetSelectedProviderAsync(); }}
Retrieve details of the multi-factor authentication phone provider configured for your tenant.
GET
https://{tenantDomain}/api/v2
/
guardian
/
factors
/
phone
/
selected-provider
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.GetSelectedProviderAsync(); }}