Sending Mailbox Items to Another Mailbox
You can send backed-up items as attachments in an email message to a specified email address.
Request
POST https://<hostname>:4443/v6/RestoreSessions/{restoreSessionId}/organization/mailboxes/{mailboxId}/items/sendToDifferentAddress |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
The following parameters must be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
restoreSessionId | string | Specifies the identification number of the restore session. For more information on how to get this parameter, see Getting Restore Sessions. |
mailboxId | string | Specifies the identification number of the mailbox. For more information on how to get this parameter, see Getting Mailboxes. |
Request Body
To send backed-up items as attachments in an email message to a specified email address, the request body must contain the following properties:
Property | Type | Description |
---|---|---|
items | item[] | Specifies the IDs of mailbox items that you want to send as attachments. For more information on how to get such IDs, see Getting Mailbox Items. |
from | string | Specifies the email address from which the restored mailbox items will be sent. |
to | string | Specifies the email address to which the restored mailbox items will be sent. |
subject | string | Specifies the subject of the email message used for sending restored mailbox items. |
text | string | Specifies the body of the email message used for sending restored mailbox items. |
For example:
Request Body: { "from": "j.smith@bestsupport.onmicrosoft.com", "to": "r.clark@bestsupport.onmicrosoft.com", "subject": "Support Tickets", "text": "Please, find attached the files you requested", "items": [ {"id": "74685f6b-16aa-4a78-a44f-05526ce0ae30"}, {"id": "70013a9e-c446-429d-aa78-9c8c20d9b814"} ] } |
|
If you omit the from property, the default "from" email address specified in Veeam Explorer for Microsoft Exchange email settings will be used. To specify Veeam Explorer for Microsoft Exchange email settings, send the PUT HTTPS request to the /VEXEmailSettings resource URL. For more information, see Editing Notification Settings. |
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns response code 200 OK.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTPS headers.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the response body message for the requests with the export and save actions: application/octet-stream. The media type and syntax of the response body message for the requests with the restore and send actions: null. |
Response Body
None.
Example
The example shows how to send all restored mailbox items as attachments in an email message to the specified email address.
Request: POST https://abc.tech.local:4443/v6/RestoreSessions/380d7caf-6294-4a33-b50a-b8aeb13af58c/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/items/sendToDifferentAddress
Request Header: Authorization: Bearer <Access-Token>
Request Body: { "from": "j_smith@bestsupport.onmicrosoft.com", "to": "r.clark@bestsupport.onmicrosoft.com", "subject": "Support Tickets", "text": "Please, find attached the files you requested" }
Response: 200 OK |