Get All Mailings

Get all mailings

Retrieve all the mailings available for your account

GET https://api.cm.com/bulkemail/v1.0/accounts/{accountID}/campaigns/{campaignID}/mailings

GET Parameters

Name In Description Required Type Example
AccountID Path The account guid True Guid A8C062E4-ECFD-48D0-89B1-A37D2622B7A9
CampaignID Path The campaign guid True Guid 77E6A0E6-0C92-4138-89BD-886EDF2ECC0D
IncludeTemplateHtmlBody Query Whether to include the html body of the template in the response False (default True) Bool True
IncludeTemplateTextBody Query Whether to include the text body of the template in the response False (default True) Bool True
IncludeTemplateJson Query Whether to include the template json of the template in the response False (default True) Bool True
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": "4ae21153-5dc0-4e35-9497-c87b7a3f6653",
		"AccountID": "a8c062e4-ecfd-48d0-89b1-a37d2622b7a9",
		"CampaignID": "77e6a0e6-0c92-4138-89bd-886edf2ecc0d",
		"Name": "Demo",
		"FromName": "John Doe",
		"FromAddressID": "05923f4c-eb2e-4e4b-a07a-096fcbb2697a",
		"ReplyToAddressID": null,
		"Subject": "Demo",
		"MailingState": 2,
		"MailingType": 1,
		"Template": {
			"ID": "d20a579e-c14a-41d5-87f3-cb84073c699e",
			"AccountID": "a8c062e4-ecfd-48d0-89b1-a37d2622b7a9",
			"Name": "campaignTemplate",
			"Description": "campaignDescription",
			"HtmlBody": "Omitted for clarity",
			"TextBody": "[[ SpecialLink.ViewInBrowser ]]\n\nI'm a new Text block ready for your content.\n\n[[ SpecialLink.Unsubscribe ]]",
			"Json": "Omitted for clarity",
			"MergeFields": {
				"MergeTags": [
					{
						"Name": "Recipient.Name",
						"Value": "{{ Recipient.Name }}",
						"Mapping": "Recipient.MergeFieldValue1"
					},
					{
						"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"
					},
					{
						"Type": "system",
						"Label": "View in browser",
						"Link": "[[ SpecialLink.ViewInBrowser ]]",
						"Mapping": "SpecialLink.ViewInBrowser"
					},
					{
						"Type": "system",
						"Label": "Viewed",
						"Link": "[[ SpecialLink.Pixel ]]",
						"Mapping": "SpecialLink.Pixel"
					}
				]
			},
			"TemplateEditorType": 2,
			"CreatedOn": "2017-08-08T14:50:30.413",
			"CreatedOnUtc": "2017-08-08T13:50:30.413Z",
			"ModifiedOn": "2017-08-08T14:50:30.413",
			"ModifiedOnUtc": "2017-08-08T13:50:30.413Z",
			"DeletedOn": null,
			"DeletedOnUtc": null
		},
		"CreatedOn": "2017-08-08T14:50:30.413",
		"CreatedOnUtc": "2017-08-08T13:50:30.413Z",
		"ModifiedOn": "2017-08-08T14:50:30.413",
		"ModifiedOnUtc": "2017-08-08T13:50:30.413Z",
		"DeletedOn": null,
		"DeletedOnUtc": null
	}
]