POST Email

Request Information

URI Parameters

None.

Body Parameters

Mail
NameDescriptionTypeAdditional information
Sender

string

None.

IsQueue

boolean

None.

Messages

Collection of Message

None.

Request Formats

application/json, text/json

Sample:
{
  "Sender": "sample string 1",
  "IsQueue": true,
  "Messages": [
    {
      "Body": "sample string 1",
      "Title": "sample string 2",
      "Email": "sample string 3"
    },
    {
      "Body": "sample string 1",
      "Title": "sample string 2",
      "Email": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<Mail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModel.Mail">
  <IsQueue>true</IsQueue>
  <Messages>
    <Message>
      <Body>sample string 1</Body>
      <Email>sample string 3</Email>
      <Title>sample string 2</Title>
    </Message>
    <Message>
      <Body>sample string 1</Body>
      <Email>sample string 3</Email>
      <Title>sample string 2</Title>
    </Message>
  </Messages>
  <Sender>sample string 1</Sender>
</Mail>

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 'Mail'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.