clerk.revoke_sign_in_token
Revoke a sign-in token in a connected Clerk application so it can no longer be used.
Sensitive — invalidates a high-privilege token.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns the revoked sign-in token object.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sign_in_token_id | Yes | Clerk sign-in token id to revoke. | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sign_in_token | No | Revoked Clerk sign-in token object from the Backend API. |