Passer au contenu principal
DELETE
/
actions
/
actions
/
{id}
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.actions.delete("id", {
        force: true,
    });
}
main();

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

The ID of the action to delete.

Paramètres de requête

force
boolean

Force action deletion detaching bindings

Réponse

Action successfully deleted.