Sending Mailbox Items to Another Mailbox
You can send a backed-up item with the specified ID as an attachment in an email message to a specified email address.
Request
POST https://<hostname>:4443/v6/RestoreSessions/{restoreSessionId}/organization/mailboxes/{mailboxId}/items/{itemId}/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. |
itemId | string | Specifies the identification number of the mailbox item. For more information on how to get this parameter, see Getting Mailbox Items. |
Request Body
To send a backed-up item as an attachment in an email message to a specified email address, the request body must contain the following properties:
Property | Type | Description |
---|---|---|
from | string | Specifies the email address from which a restored mailbox item will be sent. |
to | string | Specifies the email address to which a restored mailbox item will be sent. |
subject | string | Specifies the subject of the email message used for sending a restored mailbox item. |
text | string | Specifies the body of the email message used for sending a restored mailbox item. |
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" } |
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a 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 a backed-up mailbox item as an attachment 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/AAAAAKGE4dIvQUtGjuSnq8JTHAgHAPliTMf_6DxPiJ6TGYB9CqAAAAAAAUcAAEJD8-NHTuNAoFrJGmIzcMoAAE-h_u0AAA==/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 |