using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.ConnectedAccounts.DeleteAsync( "id" ); }}
Delete a connected account belonging to the authenticated user.
DELETE
https://{host}/me/v1
/
connected-accounts
/
accounts
/
{id}
C#
using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.ConnectedAccounts.DeleteAsync( "id" ); }}