using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.ConnectionProfiles.DeleteAsync( "id" ); }}
Delete a single Connection Profile specified by ID.
DELETE
https://{tenantDomain}/api/v2
/
connection-profiles
/
{id}
C#
using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.ConnectionProfiles.DeleteAsync( "id" ); }}