I would like to implement recommendations in email.
There are two different payloads presented in documentation. I am not sure which one to use.
1. Delivery API docs: https://developer.adobe.com/target/implement/delivery-api/
2. Email personalization docs: https://experienceleague.adobe.com/en/docs/target/using/recommendations/recommendations-faq/integrat...
The response for the second one I got is:
Client code is 100% valid. In another requests it works.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Here's a sample Delivery API that could work:
curl -X POST \
'https://clientcode.tt.omtrdc.net/rest/v1/delivery?client=clientcode&sessionId=9979fc32c26d49df8e04a6d734' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"context": {
"channel": "web"
},
"id": {
"tntId": "4920148a9a9f4061a3aff5cfe5be1cb3.35_0",
"marketingCloudVisitorId": "54485242253040699773642612187575264854"
},
"property": {
"token": "b468a242-64a4-32a0-ca0c-890bddd78789"
},
"execute": {
"mboxes": [
{
"parameters": {
"entity.id": "article-123",
"entity.event.detailsOnly" : "true"
},
"index": 0,
"name": "email-mbox"
}
]
}
}'
Remove the marketingCloudVisitorId property if you don't have a known ECID for the person receiving the email.
Good catch! That second one is referring to the older API and should be updated. I'll submit a ticket to the documentation team to have it corrected. In the meantime, use the delivery API example from your #1 for Recommendations via email with delivery API method.
Here's a sample Delivery API that could work:
curl -X POST \
'https://clientcode.tt.omtrdc.net/rest/v1/delivery?client=clientcode&sessionId=9979fc32c26d49df8e04a6d734' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"context": {
"channel": "web"
},
"id": {
"tntId": "4920148a9a9f4061a3aff5cfe5be1cb3.35_0",
"marketingCloudVisitorId": "54485242253040699773642612187575264854"
},
"property": {
"token": "b468a242-64a4-32a0-ca0c-890bddd78789"
},
"execute": {
"mboxes": [
{
"parameters": {
"entity.id": "article-123",
"entity.event.detailsOnly" : "true"
},
"index": 0,
"name": "email-mbox"
}
]
}
}'
Remove the marketingCloudVisitorId property if you don't have a known ECID for the person receiving the email.
Views
Like
Replies
Views
Likes
Replies