Passer au contenu principal
DELETE
/
user-blocks
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.userBlocks.deleteByIdentifier({
        identifier: "identifier",
    });
}
main();

Autorisations

Authorization
string
header
requis

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

Paramètres de requête

identifier
string
requis

Should be any of a username, phone number, or email.

Réponse

User successfully unblocked.