POST api/emailtemplates/create-template
Request Information
URI Parameters
None.
Body Parameters
CreateEmailTemplateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationID | integer |
None. |
|
| EmailTemplateID | integer |
None. |
|
| EmailTitle | string |
None. |
|
| From | string |
None. |
|
| To | string |
None. |
|
| CC | string |
None. |
|
| BCC | string |
None. |
|
| Subject | string |
None. |
|
| EmailContent | string |
None. |
|
| IsAttachment | boolean |
None. |
|
| IsInternal | boolean |
None. |
|
| IsBody | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"applicationID": 1,
"emailTemplateID": 2,
"emailTitle": "sample string 3",
"from": "sample string 4",
"to": "sample string 5",
"cc": "sample string 6",
"bcc": "sample string 7",
"subject": "sample string 8",
"emailContent": "sample string 9",
"isAttachment": true,
"isInternal": true,
"isBody": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.