using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.DeviceCredentials.DeleteAsync( "id" ); }}
Permanently delete a device credential (such as a refresh token or public key) with the given ID.
DELETE
https://{tenantDomain}/api/v2
/
device-credentials
/
{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.DeviceCredentials.DeleteAsync( "id" ); }}