Change Password
https://core.hisend.hunnovate.com/api/v1/projects/{project_identifier}/auth/change-password?api_key={api_key}
Change password of user
Path Parameters
project_identifier string required
The identifier or id of the project, for example project_name or 01jtk9f6xtp5bqycmj8x68040f, you can get it from the projects page on your dashboard
Query Params
api_key string required
The api key from your dashboard
Body Parameters
old_password string required
Old Password of the user
new_password string required
New Password of the user
new_password_confirmation string required
The password should match with password field
422 Error Response Example
{
"message": "Invalid old password",
}
Payload Example
{
"old_password": "@f.7esdfg_1G",
"new_password": "s89dhsfg_1G",
"new_password_confirmation": "s89dhsfg_1G",
}
200 Success Response Example
{
"data": {
},
"message": "Password changed successfully",
}