Skip to main content

Password Management

Request Password Reset

Request a password reset link to be sent to the user's email.

POST /api/user/forgot-password

Request Body

{
"email": "[email protected]",
"PlatformId": "123"
}

Response

{
"message": "Password reset instructions sent"
}

Reset Password

Reset the user's password using the reset token.

POST /api/user/reset-password

Request Body

{
"token": "reset-token",
"password": "newpassword"
}

Response

{
"message": "Password successfully reset"
}