POST Api/WebUtilities/TrialReminderMail
Request Information
URI Parameters
None.
Body Parameters
EmailDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Subject | string |
None. |
|
| Body | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": "4720e727-789f-44ae-9a85-f9daf69d071f",
"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>4720e727-789f-44ae-9a85-f9daf69d071f</UserId> </EmailDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>