POST api/job/SendSystemEmail
Sends a basic email to any specified party.
Request Information
URI Parameters
None.
Body Parameters
The send system email.
SendSystemEmailCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| To | Collection of string |
None. |
|
| From | string |
None. |
|
| Subject | string |
None. |
|
| Body | string |
None. |
|
| SystemDocumentBody | string |
None. |
|
| JsonModel | string |
None. |
|
| SystemDocumentAttachments | Collection of string |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"To": [
"sample string 1",
"sample string 2"
],
"From": "sample string 1",
"Subject": "sample string 2",
"Body": "sample string 3",
"SystemDocumentBody": "sample string 4",
"JsonModel": "sample string 5",
"SystemDocumentAttachments": [
"sample string 1",
"sample string 2"
]
}
Response Information
Resource Description
JobInvocationDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| SupportsCancellation | boolean |
None. |
|
| ReportsProgress | boolean |
None. |
|
| InitialStatusText | string |
None. |
|
| JobReference | globally unique identifier |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "d82aae76-42f3-4bc5-b785-bb2d737496d0",
"Success": true
}