API: Rest Get Snapshot Content for Contact by Email + First
The Get Snapshot Content for Contact by Email + First command allows you to retrieve a copy of both the HTML and Image message content sent to a Contact by Email AND First Name combined. This is for use in non-Customer Key Realms where Contact duplicates are allowed.
GET /subscribers/allcontentsenttoemailfirst/[email]/[first]/[campaign_id]
https://[siteurl]/rest/subscribers/allcontentsenttoemailfirst/[email]/[first]/[campaign_id]
Request Body Parameters
The command requires only the URI call with Contact Email and First Name, as well as the Campaign ID with which the message was deployed. No additional fields are required in the JSON.
Request Body Example
Using Get Snapshot Content:
curl --request GET \
--url 'https://mail.mydomain.com/rest/subscribers/allcontentsenttoemailfirst/jane.doe@mydomain.com/first/42' \
--header 'authorization: Basic bXlBY2NvdW50Onh5enB3ZDEyMw==' \
--header 'accept: application/vnd.whatcounts-v1+json' \
--header 'content-type: application/json' \
--include
Response Body
The response returns the content file name and URL to download the file.
Based on the example above, the response returns:
HTTP/1.1 200 OK
Server: serverName
Content-Type: application/json
Link: <https://mail.mydomain.com/rest/subscribers>;
Date: Wed, 29 Jan 2020 12:54:44 GMT
{
{
"firstName": "Jane",
"realmId": 1,
"email": "jane.doe@mydomain.com",
"content": {
"image": "[url]",
"template_name": "2020Jan Newsletter",
"image_file_name": "[subscriberId]_[realmId]_[templateId]_[campaignId]_[dateTime].html",
"html_file_name": "[subscriberId]_[realmId]_[templateId]_[campaignId]_[dateTime].html",
"html": "[url]",
"created_date": "2020-01-13 08:46:48.11"
}
}
}
Error Response
Error Response Codes include both Client Errors (4xx) and Server Errors (5xx). Descriptions of each can be found in Response Codes.
For example, if the Authorization is incorrect, the error would appear as:
{ "error": "Unauthorized" "status": "Unauthorized" "statusCode": 401 }
Feature added in v15.00.00