createProxyAccessRequest

Allows a user to grant access to his or her mailbox to another user.

Request

<createProxyAccessRequest>
   <entry/>
</createProxyAccessRequest>

Response

<createProxyAccessResponse>
   <id/>
   <status/>
</createProxyAccessResponse>

Elements

entry

Specifies the user to grant access to and the access rights he or she has to the mailbox.

id

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

code

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

status

Returns the success or failure of the method.

Remarks

The user can limit the type of access a proxy has by using access rights. For example, users could specify that another user has read or write access to mail, appointments, tasks, notes, alarms, notifications, options, and private items.

Example

<createProxyAccessRequest> 
   <entry> 
      <displayName>u4</displayName> 
      <email>u4@phantom.com</email> 
      <uuid>66301550-175B-0000-890F-6E00D5004E00</uuid> 
      <appointment> 
         <read>1</read> 
         <write>1</write> 
      </appointment> 
      <mail> 
         <read>1</read> 
         <write>1</write> 
      </mail> 
      <misc> 
         <alarms>1</alarms> 
         <notify>1</notify> 
         <readHidden>1</readHidden> 
         <setup>1</setup> 
      </misc> 
      <note> 
         <read>1</read> 
         <write>1</write> 
      </note> 
      <task> 
         <read>1</read> 
         <write>1</write> 
      </task> 
   </entry> 
</createProxyAccessRequest>