Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.
SOLVED

How can I reset a user account programmatically through CLI ?

I know I can do it as an admin by logging into the UI, is there a way I can do it either through REST API or CLI ?

2 REPLIES 2
Trifacta_Alumni
Alteryx Alumni (Retired)

It is possible to reset a user account through the CLI. Please enter the following command,

  • /opt/trifacta/bin/trifacta_admin_cli.py --admin_username <Admin_Username> --admin_password <Admin_Password> get_password_reset_url --user_name  <User_Username_To_Reset>

 

For more details, please refer to the CLI for User Admin section of the Trifacta Developer Guide.

Awesome, thanks Gina