API: Rest Get Snapshot Images for Contact by Email + First, All Campaigns
The Get Snapshot Images for Contact by Email + First for All Campaigns command allows you to retrieve all images of message content sent to a Contact by Email and First Name for any campaign. This is for use in non-Customer Key Realms where Contact duplicates are allowed.
GET /subscribers/availableimagessenttoemailfirst/[email]/[first]
https://[siteurl]/rest/subscribers/availableimagessenttoemailfirst/[email]/first]
Request Body Parameters
The command requires only the URI call with Contact Email 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/availableimagessenttoemailfirst/jane.doe@mydomain.com/jane' \
--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 names and URLs 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": {
"template_name": "2020Jan Newsletter",
"image_file_name": "[subscriberId]_[realmId]_[templateId]_[campaignId]_[dateTime].html",
"image": "[url]",
"created_date": "2020-01-13 08:46:48.11"
}
}
{
"firstName": "Jane",
"realmId": 1,
"email": "jane.doe@mydomain.com",
"content": {
"template_name": "2019Jan Newsletter",
"image_file_name": "[subscriberId]_[realmId]_[templateId]_[campaignId]_[dateTime].html",
"image": "[url]",
"created_date": "2019-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