Get All Templates

Get all templates

Retrieve all templates available for your account.

GET https://api.cm.com/bulkemail/v1.0/accounts/{accountID}/templates

GET Parameters

Name In Description Required Type Example
AccountID Path The account guid True Guid A8C062E4-ECFD-48D0-89B1-A37D2622B7A9
Skip Query The amount of from address to skip False (default 0) Int 0
Take Query The amount of from address to take False (default 1000) Int 1000
IncludeHtmlBody Query Whether to include the html body in the response False (default True) Bool True
IncludeTextBody Query Whether to include the text body in the response False (default True) Bool True
IncludeJson Query Whether to include the template json in the response False (default True) Bool True
Filter Query The name to filter on False String My awesome template
X-CM-PRODUCTTOKEN Header Your product token True Guid C24A5029-37DD-4161-9728-F80D8639588E

Responses

Http status Description
200 Successful operation
400 Bad request
[
	{
		"ID": "6c176f77-a2cd-45bf-b318-ec6150fee028",
		"AccountID": "a65b6ba1-7b13-4cff-aaf6-c736c977c1d4",
		"Name": "Demo",
		"Description": "",
		"HtmlBody": "Omitted for clarity",
		"TextBody": "Follow [[ SpecialLink.ViewInBrowser ]] to view the message in your browser",
		"Json": "Omitted for clarity",
		"MergeFields": {
			"MergeTags": [
				{
					"Name": "Sender.EmailAddress",
					"Value": "{{ Sender.EmailAddress }}",
					"Mapping": "Sender.EmailAddress"
				},
				{
					"Name": "Recipient.EmailAddress",
					"Value": "{{ Recipient.EmailAddress }}",
					"Mapping": "Recipient.EmailAddress"
				}
			],
			"SpecialLinks": [
				{
					"Type": "system",
					"Label": "Unsubscribe",
					"Link": "[[ SpecialLink.Unsubscribe ]]",
					"Mapping": "SpecialLink.Unsubscribe",
					"Tag": null
				},
				{
					"Type": "system",
					"Label": "View in browser",
					"Link": "[[ SpecialLink.ViewInBrowser ]]",
					"Mapping": "SpecialLink.ViewInBrowser",
					"Tag": null
				}
			]
		},
		"TemplateEditorType": 2,
		"CreatedOn": "2017-08-04T14:16:26.283",
		"CreatedOnUtc": "2017-08-04T13:16:26.283Z",
		"ModifiedOn": "2017-08-04T14:16:26.283",
		"ModifiedOnUtc": "2017-08-04T13:16:26.283Z",
		"DeletedOn": null,
		"DeletedOnUtc": null
	}
]