CREATE USERS command
See the following article for more information:
The CREATE USERS command allows you to create one or more users. These user(s) can be members of your organization or clients.
CREATE USERS emails_list TYPE CLIENT|MEMBER NOTIFY|NO NOTIFY;
The emails_list argument can be a list of quoted, comma-separated emails or RFC2822-formatted emails (e.g., emails To: header). The final keyword indicates whether or not to send a notification email to these new users about their new Crunch.io account.
Examples
Creating client users who will be notified:
CREATE USERS "John Doe <john.doe@example.com>, Richard Smith <richard.smith@example.com>", "Mary Jones <mary.jones@example.com>" TYPE CLIENT NOTIFY;
Creating member users who will be notified:
CREATE USERS "john.doe@example.com", "richard.smith@example.com Mary Jones <mary.jones@example.com>" TYPE MEMBER NOTIFY;