UserPasswordInfoGetRequest22
Bases: OCIRequest
Request the user's Web password information. The response is either a UserPasswordInfoGetResponse22 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserPasswordInfoGetRequest22.
The following elements are only used in AS data mode and ignored in XS data mode.
hasPassword
Attributes:
is_login_disabled (bool):
expiration_days (Optional[int]):
does_not_expire (Optional[bool]):
has_password (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserPasswordInfoGetRequest22
client = Client()
command = UserPasswordInfoGetRequest22(
user_id=...,
)
response = client.command(command)
print(response)