affine_send_password_reset
Initiate password reset requests by sending a reset email with a callback URL to users of AFFiNE workspaces, ensuring secure account recovery.
Instructions
Send password reset email.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callbackUrl | No | Callback URL for password reset |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"callbackUrl": {
"description": "Callback URL for password reset",
"type": "string"
}
},
"type": "object"
}