using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.RulesConfigs.DeleteAsync( "key" ); }}
Delete a rules config variable identified by its key.
DELETE
https://{tenantDomain}/api/v2
/
rules-configs
/
{key}
C#
using Auth0.ManagementApi;using System.Threading.Tasks;public partial class Examples{ public async Task Example() { var client = new ManagementClient( token: "<token>" ); await client.RulesConfigs.DeleteAsync( "key" ); }}