The Create Subscription and Send to Contact in List command allows you to subscribe an email address to a list and send a single transactional style message to the contact.
These messages are individually created and sent but can be tracked together as a sticky campaign to collect data as a single campaign. To group your data into a single campaign, use a List with Sticky Campaigns enabled.
This command does not support the same features as the HTTP API, FTP API, or WebServices API Send commands, including the ability to define Google Analytics strings, Account Profile, Contact Data for personalization, or Campaign Name. If your Template includes Contact or Custom Data, you must create the contact first and import the data you wish to fill the Template before using this command.
POST /lists
https://[siteurl]/rest/lists/subandsend/[listId]/[templateId]?querystring
The following queries are supported:
format=[1,2,99], where 1=plain text, 2=html, and 99=MIME
duplicates=[0,1], where 0=Do not search for duplicate subscriber, default; 1=Use first matched subscriber
campaignName=[string],
To track one-off message events, such as opens and click-throughs, define a campaign name. The Campaign Name can be no longer than 100 characters. A single list can have multiple campaigns by defining a different Campaign Name in a command.
snapshot=[0,1],
If Email Snapshot is enabled for a realm, the snapshot flag provides the ability to save and store HTML and PNG screenshots of emails. To store a snapshot, set this argument to '1'.
Request Body Parameters
The Create Subscription and Send to Contact in List command requires the URI call with the List ID and Template ID. Optional Filters include Format, Duplicates, Campaign Name, and Email Snapshot parameters.
The query strings are case sensitive and must be defined as in the example above. If the query string is incorrect or missing, it is ignored and the command creates a Plain Text message without duplication, sending to the first contact found to match the posted JSON.
The command also requires the following in the Posted JSON:
- Email: "email": [email], Required in non-Customer Key enabled realm
- First Name: "firstName": [firstName] , Optional
To send to a Contact in a Customer Key enabled Realm, you must also include the Customer Key in the JSON:
- Customer Key: "customerKey": [customerKey]
Request Body Example
Using Create Subscription and Send to Contact in List with all arguments, line breaks in JSON for readability:
curl --request POST \
--url 'https://mail.mydomain.com/rest/lists/subandsend/13/42?format=99&duplicates=0&campaignName=myCampaign&snapshot=1' \
--header 'authorization: Basic bXlBY2NvdW50Onh5enB3ZDEyMw==' \
--header 'content-type: application/json' \
--header 'accept: application/vnd.whatcounts-v1+json' \
--data '{
"subscriberId": 716094,
"email": "jon.doe@mydomain.com"
}' \
--include
Using Create Subscription and Send to Contact in List in a Customer Key enabled Realm, line breaks in JSON for readability:
curl --request POST \
--url 'https://mail.mydomain.com/rest/lists/13/2?format=99&duplicates=0&campaignName=myCampaign&snapshot=1' \
--header 'authorization: Basic bXlBY2NvdW50Onh5enB3ZDEyMw==' \
--header 'content-type: application/json' \
--header 'accept: application/vnd.whatcounts-v1+json' \
--data '{
"subscriberId": 716094,
"email": "jon.doe@mydomain.com",
"firstName": "Jon",
"customerKey": "jDoe3214"
}' \
--include
Response Body
The response returns a Success or Failure Error. Based on the first example above, the response returns a 0 for Success:
HTTP/1.1 200 OK
Server: serverName
Content-Type: application/json
Content-Length: 1
Date: Fri, 17 Mar 2018 12:54:44 GMT
0
Error Response
Error Response Codes include both Client Errors (4xx) and Server Errors (5xx). Descriptions of each can be found in Response Codes. An error will occur if List ID or Template ID are not found, if a Contact ID or Email/Customer Key is not supplied in the JSON, or if Contact is not found.
For example, if a Subscription does not exist for the Contact, the error would appear as:
{
"error": "Subscriber Not Found"
"status": "Not Found"
"statusCode": 404
}
Feature added in v13.00.0, Email Snapshot added in v15.00.00