reset_password
host = 'host_address'
username = 'username'
password = 'password'
hyperspace_lient = hyperspace.HyperspaceClientApi(host=host,
username=username, password=password)
ticket = hyperspaceClient.resetPassword()
print(ticket)String host = 'host_address';
String username = 'username';
String password = 'password';
HyperspaceClient hyperspaceClient = hyperspace.HyperspaceClientApi(host=host,
username=username,
password=password);
Object{ data: ticket } = await hyperspaceClient.resetPassword();
System.out.println(ticket);Last updated