POST api/Notification/SendContactMail

Request Information

URI Parameters

None.

Body Parameters

SendContactMailModel
Name Description Type Additional information
Subject

string

None.

Message

string

None.

ReportedBy

string

None.

Distributor

string

None.

ReplyMailAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Subject": "sample string 1",
  "Message": "sample string 2",
  "ReportedBy": "sample string 3",
  "Distributor": "sample string 4",
  "ReplyMailAddress": "sample string 5"
}

text/html

Sample:
{"Subject":"sample string 1","Message":"sample string 2","ReportedBy":"sample string 3","Distributor":"sample string 4","ReplyMailAddress":"sample string 5"}

application/xml, text/xml

Sample:
<SendContactMailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mediahuis.Models.Notifications">
  <Distributor>sample string 4</Distributor>
  <Message>sample string 2</Message>
  <ReplyMailAddress>sample string 5</ReplyMailAddress>
  <ReportedBy>sample string 3</ReportedBy>
  <Subject>sample string 1</Subject>
</SendContactMailModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.