Reset user's password
Outcome
Successfully triggering this endpoint will update the user's password to the new specified password.
Endpoint
Example Endpoint
- PUT /broker/reset_user_password
- Parameters:
user_email
: Required. Email address of the registered user (string)new_password
: Required. New password of the account (string)
- Response:
- 200 OK: A JSON object containing success message
- 500 Internal Server Error: If an error occurs.
- Parameters:
Parameters
Additional required parameter(s)
Authorization
Header: Required for authentication. Should contain a valid JWT token.Content-Type
Header: Should be set toapplication/json
for JSON data.
Example
Curl
curl --location --request PUT 'https://hub2.trylevel2.com/broker/reset_user_password?user_email=shanhanigun%40gmail.com&new_password=123' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl9leHBpcnkiOjE3NDIyMDA4MDUuMzAzNjEyfQ.dlaC-HU37JNA_KMygPXJu1AiKmBlk8lYBIZaBeGYvq8'