POST api/v1/email/send-email

Request Information

URI Parameters

None.

Body Parameters

EmailVM
NameDescriptionTypeAdditional information
name

string

None.

phoneNumber

string

None.

emailAddress

string

None.

body

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "phoneNumber": "sample string 2",
  "emailAddress": "sample string 3",
  "body": "sample string 4"
}

application/xml, text/xml

Sample:
<EmailVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Academic.API.Controllers">
  <body>sample string 4</body>
  <emailAddress>sample string 3</emailAddress>
  <name>sample string 1</name>
  <phoneNumber>sample string 2</phoneNumber>
</EmailVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.