Skip to main content
DELETE
/
user-blocks
TypeScript
import { ManagementClient } from "auth0";

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

Authorizations

Authorization
string
header
required

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

Query Parameters

identifier
string
required

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

Response

User successfully unblocked.