Getting Notification Settings
You can get a resource representation of Veeam Explorer for Microsoft SharePoint notification settings.
Request
Request Headers
The request header must contain an authorization token of the current session.
Request Body
None.
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: application/json; charset=utf-8 |
Response Body
The response body contains the following properties:
Property | Type | Description |
---|---|---|
enableNotification | boolean | If set to true, indicates that email notifications are enabled for Veeam Explorer for Microsoft SharePoint. The specified mail server settings will be also used for sending restored Microsoft SharePoint items by email. |
smtpServer | string | Specifies the full DNS name or IP address of the SMTP server used for sending notifications and restored items in email messages. |
port | integer | Specifies the port for connecting to the SMTP server. |
from | string | Specifies the email address from which notifications and restored Microsoft SharePoint data will be sent. This email address must have permissions to connect to the SMTP server if the SMTP server requires authentication. |
useSSL | boolean | If set to true, indicates that Veeam Backup for Microsoft 365 uses a secure connection for email notification transmission. Otherwise, email notifications will be transmitted through the connection that does not require SSL authentication. |
useAuthentication | boolean | If set to true, indicates that the SMTP server requires authentication. Otherwise, a connection that does not enforce authentication will be established to the SMTP server. |
username | string | Specifies the user name that you want to use for authenticating to the SMTP server. |
userpassword | string | Specifies the password of the user account that you want to use for authenticating to the SMTP server. |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Example
The example returns a resource representation of the Veeam Explorer for Microsoft SharePoint settings that Veeam Backup for Microsoft 365 uses to send the notifications on the backup job run results.
Request: GET https://abc.tech.local:4443/v6/EmailSettings
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "enableNotification": true, "server": "smtp.office365.com", "port": 25, "useAuthentication": true, "username": "vscott@tech.onmicrosoft.com", "from": "support@tech.com", "_links": { "self": { "href": "/v6/vexemailsettings" } } } |