API: Rest Get Snapshot Images for Contact by Customer Key, All Campaigns
The Get Snapshot Images for Contact by Customer Key for All Campaigns command allows you to retrieve all images of message content sent to a Contact by Customer Key for any campaign. This is for use in Customer Key Realms.
GET /subscribers/availableimagessenttocustomerkey/[customerKey]
https://[siteurl]/rest/subscribers/availableimagessenttocustomerkey/[customerKey]
Request Body Parameters
The command requires only the URI call with Contact Customer Key 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/availableimagessenttocustomerkey/5606' \
--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 { {"customerKey": "5606",
"realmId": 1,
"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"
}
}
{
"customerKey": "5606",
"realmId": 1,
"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