Password Reset
The ResetPassword payload. This is used when the user wants to reset their password using a password reset code.
| Field | Type | Description |
|---|---|---|
| code | Number | The password reset code the user got emailed. |
| String | The user’s email. | |
| password | String | The user’s new password. |
Example
{
"code": 234567,
"email": "[email protected]",
"password": "wow such security"
}