Skip to main content
GET
https://{tenantDomain}/api/v2
/
rules-configs
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.ListAsync();
    }

}
[
  {
    "key": "MY_RULES_CONFIG_KEY"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Rules config keys successfully retrieved.

key
string
default:MY_RULES_CONFIG_KEY

Key for a rules config variable.

Required string length: 1 - 127
Pattern: ^[A-Za-z0-9_\-@*+:]*$