Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Revenue conversion - viewed an mbox - web sdk - how to do it?

Avatar

Level 10

I have set up reporting like that:

Michael_Soprano_0-1763041153073.png

How to send the mbox with web sdk?

alloy("sendEvent", {
xdm: { ...},
decisionScopes: ["renuve-generating"]
})

Something like that?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Reply

Avatar

Community Advisor

Hi @Michael_Soprano  I believe revenue-generating location where a Target experience is suppose to delivered so I mean you already request personalization content (rendered a proposition) so like below you can report 

alloy("sendEvent", {
  xdm: {
    _experience: {
      decisioning: {
        propositions: [{
          scope: "revenue-generating"
        }],
        propositionEventType: {
          display: 1
        }
      }
    },
    eventType: "decisioning.propositionDisplay"
  }
});