Skip to main content
PUT
/
user
/
reset-password
Reset Password
curl --request PUT \
  --url https://apigw.bienport.com/api/user/reset-password \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'OrganizationId: <organizationid>' \
  --data '
{
  "password1": "123qweasdzx",
  "password2": "123qweasdzx",
  "passwordResetToken": "1asasd3452ADw34",
  "userId": 12343123
}
'
{
  "status": "<string>",
  "userId": 123
}

Headers

Authorization
string
required

Access Token

OrganizationId
string
required

Organization ID

Body

application/json

passwordResetRequest

Password Reset Request Model

password1
string

New Password

Example:

"123qweasdzx"

password2
string

Repeat New Password

Example:

"123qweasdzx"

passwordResetToken
string

Password Reset Token

Example:

"1asasd3452ADw34"

userId
integer<int64>

User Id

Example:

12343123

Response

User.

status
string
userId
integer<int64>