POST api/Email

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
email
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "FromAddress": "sample string 1",
  "ToAddress": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ],
  "Subject": "sample string 2",
  "Body": "sample string 3"
}

application/xml, text/xml

Sample:
<Email xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LIA.APIService.Models">
  <Body>sample string 3</Body>
  <FromAddress>sample string 1</FromAddress>
  <Subject>sample string 2</Subject>
  <ToAddress xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
    <d2p1:string>sample string 3</d2p1:string>
  </ToAddress>
</Email>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Email'.

Response Information

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.