using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Organization.Domains.IdentityProviders.GetAsync( "domain_id" ); }}
Retrieve the list of Identity Providers associated with a domain specified by ID for this Organization.
GET
/
domains
/
{domain_id}
/
identity-providers
C#
using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Organization.Domains.IdentityProviders.GetAsync( "domain_id" ); }}