using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Organization.IdentityProviders.DetachAsync( "idp_id" ); }}
Remove an Identity Provider specified by ID from this Organization. This only removes the association; the underlying Identity Provider is not deleted. Members will no longer be able to authenticate using this Identity Provider.
POST
/
identity-providers
/
{idp_id}
/
detach
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.IdentityProviders.DetachAsync( "idp_id" ); }}