Passer au contenu principal
DELETE
/
users
/
{id}
/
federated-connections-tokensets
/
{tokenset_id}
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.users.federatedConnectionsTokensets.delete("id", "tokenset_id");
}
main();

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

Id of the user that owns the tokenset

Maximum string length: 300
tokenset_id
string
requis

The tokenset id

Maximum string length: 36

Réponse

Tokenset successfully deleted.