Updates an existing email template by specifying its template ID in the path.
The API request will be authenticated through Basic Authentication. Basic Authentication sends a Base64-encoded string containing your username and password with every API request.
The username and password details can be obtained from the MoEngage Dashboard. If you're using the API for the first time, follow these steps:
This is your MoEngage account's Workspace ID, which must be passed along with the request. You can find your MoEngage Workspace ID at Settings -> Account -> APIs -> Workspace ID.
Set the Content-Type header to application/json.
application/json This authentication parameter, used for access control, must be passed along with the request. To generate the authentication header, refer to Authentication.
This is the Template id of the template being updated. It is mandatory to add this field when updating a template.
"63f30792c66ddcaac2ef9109"
This field contains the name of the template and would be used for identifying the template. You can look for the template created using this API in the second step of campaign creation in the 'My Saved Templates' tab using this name.
Note:
5 - 50^[a-zA-Z0-9_]+$"End_Of_Season_Sale_Template"
This field contains the message body of the email. This is where you define the email template being created. The HTML tag and BODY tag (with text/tags) are mandatory. The SCRIPT tag is not allowed.
"<!DOCTYPE html><html><body><p>Content</p></body></html>"
This field contains information about the source of template creation. This can be the name of the email partner.
Note: Only alphanumerics, spaces, and underscores are allowed in this field.
"Partner"
This field contains the subject of the email campaign.
"End of Season Sale!"
This field contains the attachments to be included in the email.
Note:
10This field contains the name displayed that is displayed in the inboxes of your recipients. Sender names are one of the first things people see when you send them an email.
"Your Brand Name"
This field contains information about who created the template.
Note: Only alphanumerics, spaces, and hyphens are allowed in this field. This field can contain the email ID of the creator as well. The email id should be in the right format and a valid one.
"john.doe@example.com"
This response is returned when the request is processed successfully.