Skip to main content
Skip table of contents

API: Rest Update Template

The Create Template command allows you to make changes to an existing Template.  The command allows you to specify several components of a template, such as Subject and Body.  More advanced control of the Template properties must be set through the web interface or WebServices API where available.    

PATCH /templates/[template_id]

https://[siteurl]/rest/templates/[template_id]

Request Body Parameters

The Create Templates command requires at least one of the following in the Posted JSON in order to update a template:

  • Template Name: "name": "[Template Name]"

  • Template Subject: "subject": "[Template Subject]"

  • Template Description: "description": "[Template Description]"

  • Template HTML Body: "templateDataHtml": "<html>\r\n\t<head>\r\n\t\t<title></title>\r\n\t</head>\r\n\t<body>\r\n\t\tThis is an <strong>HTML</strong> test</body>\r\n</html>\r\n"

  • Template Plain Text Body: "templateDataPlaintext": "%%DISPLAY_MSG%% click to open email in browser"

  • Advanced Options: "templateDataXml": "<encode_base64>0</encode_base64><unicode>0</unicode><encode_quoted>0</encode_quoted><utf_charset>UTF-8</utf_charset>"

  • Template Folder: "templateFolderId": [Template folder id]

Request Body Example

Using Create Template with all arguments, line breaks in JSON for readability:

CODE
curl --location 'https://mail.mydomain.com/rest/templates/' \
--header 'Content-Type: application/json' \
--header 'Authorization: ••••••' \
--data '{ "name": "Template Name",
"subject": "Template Subject",
"description": "",
"templateDataHtml": "<html>\r\n\t<head>\r\n\t\t<title></title>\r\n\t</head>\r\n\t<body>\r\n\t\tThis is an <strong>HTML</strong> test</body>\r\n</html>\r\n",
"templateDataPlaintext": "%%DISPLAY_MSG%% click to open email in browser",
"templateDataMobile": "",
"templateDataXml": "<encode_base64>0</encode_base64><unicode>0</unicode><encode_quoted>0</encode_quoted><utf_charset>UTF-8</utf_charset>",
"templateFolderId": 0
 }'

Response Body

The response returns all API available Template Properties in JSON format.  Based on the example above, the response returns:

CODE
{
    "skip": 0,
    "max": 0,
    "id": 850147,
    "realmId": [realm_id],
    "name": "Template Name",
    "description": "",
    "subject": "Template Subject",
    "updatedDate": "Mar 07, 2025 16:40:50 PM",
    "templateFolderId": 0,
    "templateDataPlaintext": "%%DISPLAY_MSG%% click to open email in browser",
    "templateDataHtml": "<html>\r\n\t<head>\r\n\t\t<title></title>\r\n\t</head>\r\n\t<body>\r\n\t\tThis is an <strong>HTML</strong> test</body>\r\n</html>\r\n",
    "templateDataMobile": "",
    "templateDataXml": "<encode_base64>1</encode_base64><unicode>1</unicode><encode_quoted>0</encode_quoted><utf_charset>UTF-8</utf_charset>",
    "productLayoutName": "",
    "valid": true
}

Error Response

Error Response Codes include both Client Errors (4xx) and Server Errors (5xx).  Descriptions of each can be found in Response Codes

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.