# Get single email template

You can return a specific email template.

GET /email-templates/:id/

Attributes Type Required Description
id integer yes A unique identifier for an email template automatically generated by User.com

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" 
-H "Accept: */*; version=2" -H "Content-Type: application/json" "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"
}