Update Email Template Using PUT

Update Email Template Using PUT

Note: This method is deprecated and will be removed in next release. Use the recommended public method, instead (see PUT /api/notifications/templates )

Request
URI
PUT
https://{api_host}/api/notifications/email/templates
COPY
Request Body

The e-mail template to be updated

email-template of type(s) application/json
Required
{
    "html": false,
    "id": "string",
    "name": "string",
    "template": "string"
}
boolean
html
Required

Flag that indicates whether the template is HTML or plain text

string
id
Required

Identifier of this template. Automatically generated by the system on Create.

string
name
Required

The name of the template

string
template
Required

The body of the template

Authentication
This operation uses the following authentication methods.
Responses
200

The Updated Email Template

Returns email-template of type(s) application/json
{
    "html": false,
    "id": "string",
    "name": "string",
    "template": "string"
}
boolean
html
Required

Flag that indicates whether the template is HTML or plain text

string
id
Required

Identifier of this template. Automatically generated by the system on Create.

string
name
Required

The name of the template

string
template
Required

The body of the template