POST api/AddMailLog
Request Information
URI Parameters
None.
Body Parameters
MailLogName | Description | Type | Additional information |
---|---|---|---|
MailSource | string |
None. |
|
Subject | string |
None. |
|
MailType | string |
None. |
|
Description | string |
None. |
|
SendTo | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "MailSource": "sample string 1", "Subject": "sample string 2", "MailType": "sample string 3", "Description": "sample string 4", "SendTo": "sample string 5" }
application/xml, text/xml
Sample:
<MailLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MainService.Models"> <Description>sample string 4</Description> <MailSource>sample string 1</MailSource> <MailType>sample string 3</MailType> <SendTo>sample string 5</SendTo> <Subject>sample string 2</Subject> </MailLog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>