SendErrorReport

Trigger this action to send an error report as email.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "SendErrorReport": {
    "SmtpServer": "server",
    "LocationIdentifier": "subject",
    "EmailAddress": "file",
    "EmailSenderAddress": "format"
  }
}
SmtpServer
String
Identifies a local SMTP server by IP address or by host name.
LocationIdentifier
String
Specifies the text string for the subject field of the outgoing message.
EmailAddress
String
Specifies the full email address of the message recipient.
EmailSenderAddress
String
Specifies the full email address of the message sender.

Example

To send an error report in an email to the address billgamsworth@paddock.com, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "SendErrorReport": {
    "SmtpServer": "smtp.paddock.com",
    "LocationIdentifier": "error report",
    "EmailAddress": "billgamsworth@paddock.com",
    "EmailSenderAddress": "JoeyMidtown@paddock.com"
  }
}