邀請多個使用者 - Amazon Chime

支援終止通知:在 2026 年 2 月 20 日, AWS 將終止對 Amazon Chime 服務的支援。2026 年 2 月 20 日之後,您將無法再存取 Amazon Chime 主控台或 Amazon Chime 應用程式資源。如需詳細資訊,請造訪部落格文章注意:這不會影響 Amazon Chime SDK 服務的可用性。

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

邀請多個使用者

下列範例示範如何邀請多個使用者加入 Amazon Chime Team帳戶。

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);