POST api/SendInBlueEmail/CreateEmailTemplate
Request Information
URI Parameters
None.
Body Parameters
CreateEmailTemplate| Name | Description | Type | Additional information | 
|---|---|---|---|
| tag | string | None. | |
| sender | EmailTemplateSender | None. | |
| templateName | string | None. | |
| htmlContent | string | None. | |
| subject | string | None. | |
| replyTo | string | None. | |
| toField | string | None. | |
| attachmentUrl | string | None. | |
| isActive | boolean | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "tag": "sample string 1",
  "sender": {
    "name": "sample string 1",
    "email": "sample string 2"
  },
  "templateName": "sample string 2",
  "htmlContent": "sample string 3",
  "subject": "sample string 4",
  "replyTo": "sample string 5",
  "toField": "sample string 6",
  "attachmentUrl": "sample string 7",
  "isActive": true
}
        application/xml, text/xml
            Sample:
        
<CreateEmailTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <tag>sample string 1</tag>
  <sender>
    <name>sample string 1</name>
    <email>sample string 2</email>
  </sender>
  <templateName>sample string 2</templateName>
  <htmlContent>sample string 3</htmlContent>
  <subject>sample string 4</subject>
  <replyTo>sample string 5</replyTo>
  <toField>sample string 6</toField>
  <attachmentUrl>sample string 7</attachmentUrl>
  <isActive>true</isActive>
</CreateEmailTemplate>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:37:14",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>