Is there a way to delete users in v2? I saw one forum answer on how to remove users in v0 but nothing for v2.
Thanks!
Steve
Is there a way to delete users in v2? I saw one forum answer on how to remove users in v0 but nothing for v2.
Thanks!
Steve
Hi @stevew,
Currently, there is no formal command to delete a user (this will change in the next release).
For now, you can delete a user using an interactive python session (use this carefully):
cryosparcm icli
db['users'].delete_one({'emails.0.address': '<insert_email_address_here>' })
The email address should be contained in apostrophes, e.g., ‘John.Doe@Anyco.com’
Thanks! Looks like that worked.
Steve