POST Api/WebUtilities/TrialReminderMail

Request Information

URI Parameters

None.

Body Parameters

EmailDTO
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Subject

string

None.

Body

string

None.

Request Formats

application/json, text/json

Sample:
{
  "userId": "267257fe-b8f3-4c9b-ab6f-0974b7cb4eaa",
  "subject": "sample string 2",
  "body": "sample string 3"
}

application/xml, text/xml

Sample:
<EmailDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccessManager.LegacyTranslations">
  <Body>sample string 3</Body>
  <Subject>sample string 2</Subject>
  <UserId>267257fe-b8f3-4c9b-ab6f-0974b7cb4eaa</UserId>
</EmailDTO>

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

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>