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": "924eb71f-0992-492e-a91d-ea9e961790d3",
  "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>924eb71f-0992-492e-a91d-ea9e961790d3</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>