# Update email template

You can update an existing email template.

PUT /email-templates/:id/

Attributes Type Required Description
id integer yes A unique identifier for an email template automatically generated by User.com.
content string yes A content of your email template (HTML can be used inside).
desc string yes A description of your email template.
name string yes An email template name.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X PUT -H "Authorization: Token <your_64_char_api_key>"
     -H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
  "name":"Test template Updated",
  "content":"\<body>\<p>My test email template has been updated\</p>\</body>",
  "desc":"This is updated email template"
}' "https://<your_app_subdomain>.user.com/api/public/email-templates/:id/"

# Response

{
  "id": 213,
  "name": "Test template Updated",
  "desc": "This is updated email template",
  "created_at": "2016-09-19T09:08:53.125485Z",
  "updated_at": "2016-09-19T10:25:43.460763Z",
  "content": "\<body>\<p>My test email template has been updated\</p>\</body>",
  "subject": "Test template subject"
}