Skip to main content
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();

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Id of the user that owns the tokenset

Maximum string length: 300
tokenset_id
string
required

The tokenset id

Maximum string length: 36

Response

Tokenset successfully deleted.