TTWrite API: Reset User Password
Endpoint URL
//ttwrite.4up.eu/mobile_api/resetpassword
Description
This API allows users to reset their password by providing the necessary recovery details.
Parameters
Field | Value | Remarks |
---|---|---|
email | string | The email address associated with the user account. |
reset_code | string | Optional. The code sent to the user’s email for verification. |
new_password | string | Optional. The new password to be set after verification. |
Example Usage
Step 1: Request Password Reset
httpCopy codePOST //ttwrite.4up.eu/mobile_api/resetpassword
Content-Type: application/json
{
"email": "[email protected]"
}
Step 2: Submit Reset Code and New Password
httpCopy codePOST //ttwrite.4up.eu/mobile_api/resetpassword
Content-Type: application/json
{
"email": "[email protected]",
"reset_code": "123456",
"new_password": "newsecurepassword"
}
Notes
- The process typically involves two steps:
- Request a reset code to be sent to the user’s email.
- Submit the reset code along with the new password to complete the process.
- Authentication is not required for initiating a reset but is required for confirming the reset.
- Ensure the
email
is registered on the platform.
admin December 9, 2024 email password reset, email verification reset, password recovery API, password recovery endpoint, password recovery steps, password reset example, recover lost password, reset code verification, reset password API, reset password process, reset user credentials, reset user password, secure password reset, TTWrite API, TTWrite forgot password, TTWrite password recovery API, TTWrite password reset, TTWrite reset endpoint, TTWrite resetpassword functionality, user authentication recovery API, Social Media, TTWrite Comments Off on TTWrite API: Reset User Password