RemoveDistributionGroupFromImList 操作
RemoveDistributionGroupFromImList EWS 操作に関する情報を検索します。
RemoveDistributionGroupFromImList 操作は、Lync が連絡先ストアに Exchange を使用する場合に、Lync インスタント メッセージング (IM) リストから配布グループを削除します。
この操作は Exchange Server 2013 で導入されました。
RemoveDistributionGroupFromImList 操作の使用
RemoveDistributionGroupFromImList 操作では、Exchange サーバーに格納されている Lync IM リストから削除する配布グループを識別する 1 つの引数を受け入れます。
RemoveDistributionGroupFromImList 操作 SOAP ヘッダー
RemoveDistributionGroupFromImList 操作では、次の表に示す SOAP ヘッダーを使用できます。
ヘッダー名 | 要素 | 説明 |
---|---|---|
偽装 |
ExchangeImpersonation |
クライアント アプリケーションが偽装しているユーザーを識別します。 このヘッダーは要求に適用されます。 |
MailboxCulture |
MailboxCulture |
RFC 3066 で定義されている "言語の識別用タグ" で定義されているカルチャを識別し、メールボックスにアクセスするために使用します。 このヘッダーは要求に適用されます。 |
RequestVersion |
RequestServerVersion |
操作要求のスキーマ バージョンを識別します。 このヘッダーは要求に適用されます。 |
ServerVersion |
ServerVersionInfo |
要求に応答したサーバーのバージョンを識別します。 このヘッダーは、応答に適用できます。 |
RemoveDistributionGroupFromImList 操作要求の例: IM リストから配布グループを削除する
RemoveDistributionGroupFromImList 操作要求の次の例は、IM グループから配布グループを削除する方法を示しています。 RemoveDistributionGroupFromImList 操作は、IM リストから削除する配布グループを識別するための一意のグループ識別子を受け入れます。 GetImItemList 操作と AddDistributionGroupToImList 操作の応答で返される ExchangeStoreId 要素は、IM リストから削除できる配布グループを識別します。
注:
この記事のすべての項目識別子と変更キーは、読みやすくするために短縮されています。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<soap:Header>
<t:RequestServerVersion Version="Exchange2013" />
<t:MailboxCulture>en-US</t:MailboxCulture>
</soap:Header>
<soap:Body >
<m:RemoveDistributionGroupFromImList>
<m:GroupId Id="AAMkADEzO4QrAABmEh5oAAA="/>
</m:RemoveDistributionGroupFromImList>
</soap:Body>
</soap:Envelope>
要求 SOAP 本文では、次の要素が使用されます。
RemoveDistributionGroupFromImList 操作の応答が成功しました
次の例は、IM グループから配布グループを 削除する RemoveDistributionGroupFromImList 操作要求に対する正常な応答を示しています。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="556"
MinorBuildNumber="8"
Version="Exchange2013"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<RemoveDistributionGroupFromImListResponse ResponseClass="Success"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ResponseCode>NoError</ResponseCode>
</RemoveDistributionGroupFromImListResponse>
</s:Body>
</s:Envelope>
応答 SOAP 本文では、次の要素が使用されます。
RemoveDistributionGroupFromImList 操作エラー応答の例
次の例は、 RemoveDistributionGroupFromImList 操作要求に対するエラー応答を示しています。 これは、メールボックスから既に削除されている配布グループを削除する要求に対する応答です。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="556"
MinorBuildNumber="8"
Version="Exchange2013"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<RemoveDistributionGroupFromImListResponse ResponseClass="Error"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<MessageText>The specified object was not found in the store.</MessageText>
<ResponseCode>ErrorItemNotFound</ResponseCode>
<DescriptiveLinkKey>0</DescriptiveLinkKey>
</RemoveDistributionGroupFromImListResponse>
</s:Body>
</s:Envelope>
エラー応答 SOAP 本文では、次の要素が使用されます。