PasswordReset using OTP and userid and idstoreref
post
/oam/services/rest/access/api/v1/pswdmanagement/PasswordResetRequestsWithOTP/${userid}/${idstoreref}
An authenticated web application can update the password to be reset
for a user using the OTP generated for the user in another rest API call to generate OTP.
The ValidateOTPRequest object contains the required information to validate the OTP. These
information can be obtained from the REST call to generate the OTP for the user.The path parameter
userid and idstoreref are used to uniquely identify the user in OAM.
Request
Path Parameters
-
idstoreref(required): string
idstore that the user belongs to
-
userid(required): string
Input to uniquely identify user
Query Parameters
-
userdetails: string
userdetails object in query parameter
The request object
Root Schema : PasswordResetRequestWithOTPRequest
Type:
Show Source
object
-
otp:
object ValidateOTPRequest
-
password:
string
User password
-
username:
object userdetails
Nested Schema : ValidateOTPRequest
Type:
Show Source
object
-
appName(required):
string
Name defining calling app.
-
correlationId(required):
string
CorrelationId returned by createOTP api.
-
otpCode(required):
string
User entered otp code to be validated.
-
sessionId:
string
SessionId associated with OTP generation.
-
userId(required):
string
Username of user to generate OTP code for.
Nested Schema : userdetails
Type:
Show Source
object
-
dn:
string
the distinguished name of the user in the identity store
-
idstoreref:
string
idstore that the user belongs to
-
tenantname:
string
tenant name. Its always systemTenant
-
username:
string
the short name of the user
Response
Supported Media Types
- application/json
200 Response
Password policy assignment
Nested Schema : ValidateOTPResponse
Type:
Show Source
object
-
message:
string
Message describing error, if any.
-
minorCode:
string
Minor code indicating error details.
-
resultCode:
string
Respose code indicating success (0) or error.
401 Response
Unauthorized
404 Response
Requested entity not found
500 Response
Internal Server Error