Passer au contenu principal
POST
/
self-service-profiles
/
{profileId}
/
sso-ticket
/
{id}
/
revoke
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.selfServiceProfiles.ssoTicket.revoke("profileId", "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

profileId
string
requis

The id of the self-service profile

id
string
requis

The id of the ticket to revoke

Réponse

SSO Access Ticket revocation request accepted.