Allow promotion of a Contact to an account
Status: Beta
Brought to you by:
whitemice
Contacts can be created with Snurtle, but there is no simple way to convert a contact into an account; without this there is no direct way to add users to Coils.
c = ctx.run_command('contact::get', id=10600)
c.login='adam'
c.is_account = 1
c.template_user_id = 9999
ctx.commit()
The "account::new" Logic command implements this.
This Logic command even already implements roles. So we probably just need an API and/or a tool.
Might be nice to be able to set the template id of the new user.