Sending Mailbox Items to Original Mailbox
You can send backed-up items as attachments in an email message to the original mailbox.
|
To be able to send items as attachments, you must specify the Veeam Explorer for Microsoft Exchange email settings by sending the PUT HTTPS request to the /VEXEmailSettings resource URL. For more information, see Editing Notification Settings. |
Request
POST https://<hostname>:4443/v6/RestoreSessions/{restoreSessionId}/organization/mailboxes/{mailboxId}/items/sendToDefaultAddress |
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 the original mailbox, the request body must contain the following property:
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. |
Request Body: { "items": [ {"id": "74685f6b-16aa-4a78-a44f-05526ce0ae30"}, {"id": "70013a9e-c446-429d-aa78-9c8c20d9b814"} ] } |
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 backed-up mailbox items with the specified IDs as attachments in a email message to the original mailbox.
Request: POST https://abc.tech.local:4443/v6/RestoreSessions/380d7caf-6294-4a33-b50a-b8aeb13af58c/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/items/sendToDefaultAddress
Request Header: Authorization: Bearer <Access-Token>
Request Body: { "items": [ {"id": "74685f6b-16aa-4a78-a44f-05526ce0ae30"}, {"id": "70013a9e-c446-429d-aa78-9c8c20d9b814"}, ] }
Response: 200 OK |