Saltar al contenido principal
DELETE
https://{tenantDomain}/api/v2
/
rules-configs
/
{key}
Go
package example

import (
    context "context"

    client "github.com/auth0/go-auth0/management/management/client"
    option "github.com/auth0/go-auth0/management/management/option"
)

func do() {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    client.RulesConfigs.Delete(
        context.TODO(),
        "key",
    )
}

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de ruta

key
string
requerido

Clave de la variable de configuración de Rules que se va a eliminar.

Required string length: 1 - 127

Respuesta

Variable de configuración de Rules eliminada correctamente.