Операция GetUserRetentionPolicyTags
Найдите сведения об операции GetUserRetentionPolicyTags EWS.
Операция GetUserRetentionPolicyTags получает список всех стандартных, системных папок и личных тегов, связанных с пользователем с помощью системной политики или примененных пользователем.
Эта операция появилась в Exchange Server 2013.
Использование операции GetUserRetentionPolicyTags
Эта операция возвращает отображаемое имя, идентификатор хранения, период хранения, тип хранения, действие хранения и теги описания, а также значения свойств IsVisible, OptedInto и IsArchive .
Заголовки SOAP операции GetUserRetentionPolicyTags
Операция GetUserRetentionPolicyTags может использовать заголовки SOAP, перечисленные в следующей таблице.
Имя заголовка | Элемент | Описание |
---|---|---|
RequestVersion |
RequestServerVersion |
Определяет версию схемы для запроса операции. Это применимо к запросу. |
ServerVersion |
ServerVersionInfo |
Определяет версию сервера, который ответил на запрос. Это применимо к ответу. |
Пример запроса операции GetUserRetentionPolicyTags
В следующем примере запроса на операцию GetUserRetentionPolicyTags показано, как получить список тегов для текущего пользователя.
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
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" />
</soap:Header>
<soap:Body>
<m:GetUserRetentionPolicyTags />
</soap:Body>
</soap:Envelope>
Текст SOAP запроса содержит следующий элемент:
Успешный ответ операции GetUserRetentionPolicyTags
В следующем примере показан успешный ответ на запрос операции GetUserRetentionPolicyTags .
<?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="179"
MinorBuildNumber="0"
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">
<GetUserRetentionPolicyTagsResponse ResponseClass="Success"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ResponseCode>NoError</ResponseCode>
<RetentionPolicyTags>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>1 Year Delete</DisplayName>
<RetentionId>e66252f9-794f-4b36-b55e-d6d95fdf87a3</RetentionId>
<RetentionPeriod>365</RetentionPeriod>
<Type>Personal</Type>
<RetentionAction>DeleteAndAllowRecovery</RetentionAction>
<Description/>
<IsVisible>true</IsVisible>
<OptedInto>false</OptedInto>
<IsArchive>false</IsArchive>
</RetentionPolicyTag>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>Personal 1 year move to archive</DisplayName>
<RetentionId>b2a29464-649c-4174-932b-6aaac9811c89</RetentionId>
<RetentionPeriod>365</RetentionPeriod>
<Type>Personal</Type>
<RetentionAction>MoveToArchive</RetentionAction>
<Description/>
<IsVisible>true</IsVisible>
<OptedInto>false</OptedInto>
<IsArchive>true</IsArchive>
</RetentionPolicyTag>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>Sent Items</DisplayName>
<RetentionId>b0d32f1b-fbd0-4c1d-ba3e-ddd1086ea1d3</RetentionId>
<RetentionPeriod>365</RetentionPeriod>
<Type>SentItems</Type>
<RetentionAction>DeleteAndAllowRecovery</RetentionAction>
<Description/>
<IsVisible>false</IsVisible>
<OptedInto>false</OptedInto>
<IsArchive>false</IsArchive>
</RetentionPolicyTag>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>Default 1 year delete</DisplayName>
<RetentionId>29fc9b9d-98b0-4c01-acf8-3996e2afce98</RetentionId>
<RetentionPeriod>365</RetentionPeriod>
<Type>All</Type>
<RetentionAction>DeleteAndAllowRecovery</RetentionAction>
<Description/>
<IsVisible>false</IsVisible>
<OptedInto>false</OptedInto>
<IsArchive>false</IsArchive>
</RetentionPolicyTag>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>Two Year Retention</DisplayName>
<RetentionId>a1a38957-2557-404e-9f32-53d77c948f62</RetentionId>
<RetentionPeriod>730</RetentionPeriod>
<Type>Personal</Type>
<RetentionAction>DeleteAndAllowRecovery</RetentionAction>
<Description>Use this tag for all items to be retained for two years.</Description>
<IsVisible>true</IsVisible>
<OptedInto>true</OptedInto>
<IsArchive>false</IsArchive>
</RetentionPolicyTag>
<RetentionPolicyTag xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<DisplayName>Default two year move to archive</DisplayName>
<RetentionId>75bc8dbe-a0e8-4e09-9fa3-fd4c21f49318</RetentionId>
<RetentionPeriod>730</RetentionPeriod>
<Type>All</Type>
<RetentionAction>MoveToArchive</RetentionAction>
<Description/>
<IsVisible>false</IsVisible>
<OptedInto>false</OptedInto>
<IsArchive>true</IsArchive>
</RetentionPolicyTag>
</RetentionPolicyTags>
</GetUserRetentionPolicyTagsResponse>
</s:Body>
</s:Envelope>
Текст SOAP ответа содержит следующие элементы:
Ответ на ошибку операции GetUserRetentionPolicyTags
Коды ошибок, которые являются универсальными для EWS, см. в разделе ResponseCode.