modifyNotifyRequest

Modifies a NotfyEntry element. See createNotifyRequest. --For GroupWise 8.0 SP1 and later.

Request

<modifyNotifyRequest>
  <id type=”types:uid” />
  <updates type=”types:NotifyEntryChanges” />
</modifyNotifyRequest>

Response

<modifyNotifyResponse>
  <status type=”types:Status” />
</modifyNotifyResponse>

Elements

id

Specifies the ID of the NotifyEntry element to change.

code

Specifies the error number related to the request. 0 indicates that the request was successful.

status

Returns the success or failure of the method.

Example

<modifyNotifyRequest>
  <id>4D3D6590.domain.PO1.100.1776172.1.25C8C.1@78</id>
  <updates>
    <update type="NotifyEntry">
      <displayName>Jay E Parker</displayName>
      <rights>
        <alarm>false</alarm>
        <notification>true</notification>
      </rights>
    </update>
  </updates>
</modifyNotifyRequest>

<modifyNotifyResponse>
  <status>
    <code>0</code>
  </status>
</modifyNotifyResponse>