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
- LocationIdentifier
- String
- EmailAddress
- String
- EmailSenderAddress
- String
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"
}
}