Skip to main content
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();

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the action to delete.

Query Parameters

force
boolean

Force action deletion detaching bindings

Response

Action successfully deleted.