Invite multiple users - Amazon Chime

You must be an Amazon Chime system administrator to complete the steps in this guide. If you need help with the Amazon Chime desktop client, web app, or mobile app, see Getting support in the Amazon Chime User Guide.

Invite multiple users

The following example shows how to invite multiple users to an Amazon Chime Team account.

List<String> emails = new ArrayList<>(); emails.add("janedoe@example.com"); emails.add("richardroe@example.net"); InviteUsersRequest inviteUsersRequest = new InviteUsersRequest() .withAccountId("chimeAccountId") .withUserEmailList(emails); chime.inviteUsers(inviteUsersRequest);