A regular way for registry account is
- admin use REST API, POST /people {"emails":["john@mysite.webex.com"], "displayName":"john", "orgId":"<orgId>"}
- user receive email and activate account
- user direct to registry page and input password and displayName
- done, user can login now
But what I need is processing like below:
- admin use REST API, POST /people {"emails":["john@mysite.webex.com"], "displayName":"john", "orgId":"<orgId>", "password": "<password>", "invitePending":false, "active":true}
- the default password may come from users identity number or other rules that admin can defined by himself - done, user can login now
Pros:
- user doesn't need to receive email for setting password and activate account by himself, just login directly
- admin can customize the rule of default password
- admin can decide whether send email to user or not
Is there any approach can cover what I need ?