Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Eric_Vidana
Eric_Vidana
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
52

Likes Received

Likes Received
195

Posts

Posts
179

Discussions

Discussions
65

Questions

Questions
115

Ideas

Ideas
20

Blog Posts

Blog Posts
0
Top badges earned by Eric_Vidana
Customize the badges you want to showcase on your profile
Re: Adobe Target Activity Report not working for BatchAPI mBox Call - Adobe Target 15-03-2019
You can remove that param. It is used for workspaces.

Views

10.9K

Likes

0

Replies

1
Re: Adobe Target Activity Report not working for BatchAPI mBox Call - Adobe Target 14-03-2019
So it sounds like you might be using A4T which puts me into the camp of not being able to help a whole lot. The batch qualification and conversions seems to be working fine.https://COMPANY.tt.omtrdc.net/rest/v2/batchmbox?client=COMPANY&sessionId=aksdflkajsdfjskdfjk{"client": "COMPANY","id": {"thirdPartyId": "test123"},"mboxes": [{"indexId": 0,"mbox": "target-batch-test","parameters": {"at_property": "AT_TOKEN"}}]}and here is my conversion{"client": "COMPANY","id": {"thirdPartyId": "test123"},"mb...

Views

10.9K

Like

1

Replies

9
Re: a/b redirect test an entire website - Adobe Target 14-03-2019
Some initial thoughts:I think you are on the right track with using a profile script to segment out the audiences in a way that will be stickyYou could run 2 global redirect campaigns (one for each group) that uses a js offer rather than an out of the box target redirect offer so that you have control over what it is doing. Example code below.You would need to make sure to pass the mboxSession to the new domain so that conversions work appropriately.I would keep all the pathname matching to the ...

Views

7.6K

Likes

4

Replies

3
Re: Adobe Target Activity Report not working for BatchAPI mBox Call - Adobe Target 14-03-2019
Are the visitor/visit/impressions not showing or the conversions?

Views

10.9K

Likes

0

Replies

15
Re: Need help in testing and understanding how criteria's in Recommendations work - Adobe Target 14-03-2019
At the very least, each product page would need to have a target call (preferably target-global) that has the following params:entity.identity.categoryYou can check the network panel to see if those are getting fired off. It will accomplish two things on the back end; incrementing the database for product views and updating the catalog with the correct category. It will also be the entry criteria (if you choose) to show other related articles. In the screen shot above, you are using recently vie...

Views

3.0K

Likes

2

Replies

0
Re: Need help with Recommendations related APIs? - Adobe Target 06-03-2019
That would be in the Delivery side of the API. After having set up a Recommendations type activity in Target, you can then qualify for the activity by looking at this:Target API v1.0 I would categorize the above (Adobe Target Recommendations API corrected) link to be the admin side of dealing with Recommendations. Most of those endpoints mimc UI functionality within the Recs portal.

Views

2.0K

Likes

2

Replies

0
Re: Target recommendations only displays the first recommendation - Adobe Target 06-03-2019
Not sure if super helpful but here is a go-to design for me to debug if data is coming through a particular criteria.{ "recommendations": [ #set($start = 0) #set($end = 9) #set($range = [$start..$end]) #foreach($i in $range) #if ($entities[$i].id) { "id": "$entities[$i].id", "title": "$entities[$i].name" } #if ($i < $end) , #end #end #end ]}If you feel like the criteria is to blame, then you can set up an activity with front/back promotions that can be hard coded entities.It is also worth passin...

Views

1.5K

Likes

4

Replies

0
Re: duplicated mbox calls on SPA - Adobe Target 25-02-2019
Without seeing the initiator on for those calls, I presume that the first (or second) is coming from the at.js base code property:globalMboxAutoCreate: trueMight want to set that to false if you are going to invoke the target-global-mbox on your own as the router goes to work. I am no expert in SPA, just an observation.

Views

2.0K

Like

1

Replies

0
Re: Launch Adobe Target - Adobe Target 13-02-2019
You are in the right place. URL should follow this format:COMPANY.experiencecloud.adobe.com/content/mac/COMPANY/target/activities.htmlMight want to connect with client care.

Views

1.5K

Like

1

Replies

0
Re: Issues making requests to get target activities via API - Adobe Target 12-02-2019
let options = { host: 'mc.adobe.io', path: '/COMPANY/target/activities', json: true, headers: { 'Content-Type': 'application/vnd.adobe.target.v2+json', 'X-Api-Key': 'X-Api-Key', Authorization: 'Bearer ' + 'ACCESS TOKEN' }};let req = https.get(options, callback);

Views

2.7K

Like

1

Replies

2