Changes a User's temporary password.
Success
Unauthorized
{- "userID": "string",
- "newPassword": "string",
- "session": "string"
}
{- "data": {
- "challengeName": "string",
- "session": "string",
- "authenticationResult": {
- "accessToken": "string",
- "idToken": "string",
- "refreshToken": "string",
- "expiresIn": 0
}
}, - "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}
Begin password recovery flow. Calling this API causes a message to be sent to the end user with a confirmation code that is required to change the user's password.
Success
Unauthorized
{- "userID": "string"
}
{- "data": {
- "message": "string"
}, - "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}
Allows a user to enter a confirmation code to reset a forgotten password.
Success
Unauthorized
{- "userID": "string",
- "password": "string",
- "confirmationCode": "string"
}
{- "data": {
- "message": "string"
}, - "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}
User requests to change their password.
Success
Unauthorized
{- "accessToken": "string",
- "previousPassword": "string",
- "proposedPassword": "string"
}
{- "data": "string",
- "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}
Admin request to reset a User's password. When an Administrator calls this API, the User's current password is invalidated and must be changed. If a user tries to sign in after the API is called, the User will get a PasswordResetRequired
message back and should use the forgot password
flow. In addition, if a verified email exists for the user, calling this API will also result in sending a message to the end user with the code to change their password.
Success
Unauthorized
Resends the invitation message to a user that already exists and resets the expiration on the user's sign-up window.
Success
Unauthorized