メインコンテンツへスキップ
DELETE
/
user-blocks
TypeScript
import { ManagementClient } from "auth0";

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

承認

Authorization
string
header
必須

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

クエリパラメータ

identifier
string
必須

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

レスポンス

User successfully unblocked.