Skip to main content
DELETE
/
branding
/
templates
/
universal-login
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.branding.templates.deleteUniversalLogin();
}
main();

Authorizations

Authorization
string
header
required

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

Response

Template successfully deleted.