reset_password
The function reset_password()
generates a link that allows you to reset your password.
Example -
host = 'host_address'
username = 'username'
password = 'password'
hyperspace_lient = hyperspace.HyperspaceClientApi(host=host,
username=username, password=password)
ticket = hyperspaceClient.resetPassword()
print(ticket)
The output will be of the form
{ "ticket": "https://auth.com/reset?ticket=xxxx#" }
Last updated