unlock-user
Restore user access to Clerk authentication by unlocking accounts that were previously disabled, allowing users to sign in again.
Instructions
Desbloqueia um usuário do Clerk, permitindo que ele faça login novamente
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}