createNotifyRequest

Creates a notify entry. In the GroupWise Windows client, you can set up to be notified for another persons alarms and deliveries (see “Being Notified of Someone Else's Messages”. The createNotifyRequest, getNotifyListRequest, modifyNotifyRequest and removeNotifyRequest are used to manage these settings. --For GroupWise 8.0 SP1 and later.

Request

<createNotifyRequest>
  <entry/>
</createNotifyRequest>

Response

<createNotifyResponse>
  <id/>
  <status/>
</createNotifyResponse>

Elements

entry

Specifies the user and notification options.

id

On a successful response, specifies the ID of the NotifyEntry.

code

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

status

Returns the success or failure of the request.

Example

<createNotifyRequest>
  <entry type="NotifyEntry">
    <displayName>Jay Parker</displayName>
    <email>jparker@prestons.provo.novell.com</email>
    <uuid>C974CA00-0B55-0000-B976-8E90E5B002BD</uuid>
    <rights>
      <alarm>true</alarm>
      <notification>true</notification>
    </rights>
  </entry>
</createNotifyRequest>

<createNotifyResponse>
  <id>4D3D6590.domain.PO1.100.1776172.1.25C8C.1@78</id>
  <status>
    <code>0</code>
  </status>
</createNotifyResponse>