Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.connections.scimConfiguration.tokens.delete("id", "tokenId"); } main();
Deletes a scim token by its connection id and tokenId.
id
tokenId
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The connection id that owns the SCIM token to delete
The id of the scim token to delete
The SCIM token has been deleted.