Reset Password
Endpoint used to reset the user account password (“forgot my password”).
Request Example
Section titled “Request Example”curl --request POST \ --url https://chat.api.toolzz.com.br/api/v1/auth/forgot-password \ --header 'Content-Type: application/json' \ --data ' { "email": "account@email.com" } 'Response Example
Section titled “Response Example”A link to reset the password will also be sent to the email inbox.
{ "redirect_url": "https://admin.toolzz.ai/reset-password/..."}Request description
Section titled “Request description”Body Parameters
Section titled “Body Parameters”| Parameter | Type | Description | Required |
|---|---|---|---|
email | String | Email of the account for which the password will be reset. | Yes |
Response description
Section titled “Response description”| Key | Type | Description |
|---|---|---|
redirect_url | String | Redirect URL to reset the password. |