Audience Manager enablement
- Topics:
- Media Analytics
CREATED FOR:
- User
- Admin
- Developer
Adobe Audience Manager (AAM), a Data Management Platform (DMP), helps you bring your audience data assets together, making it easy to collect commercially relevant information about site visitors, create marketable segments, and serve targeted advertising and content to the right audience.
With AAM, you are not tied to a data seller, exchange, or demand-side platform. Additionally, AAM is completely agnostic when it comes to your partners’ data assets. With access to multiple data sources, AAM offers digital publishers the ability to use a wide variety of third-party data. To learn more about AAM, see the AAM documentation Audience Manager Product Documentation.
VA to AAM data transfer - For both video content and video ads, the metrics and metadata that are collected by using solution (reserved) variables can be automatically sent to AAM. The data transfer is available across all platforms including desktop, mobile, and OTT. To enable this server-side data transfer, you need to reach out to Adobe Client Care and ask for this feed to be enabled.
Federated Data fully supports data sharing to AAM. Please work with your Adobe team for confirmation of Federated Data settings.
OTT / AAM methods
You can use these methods to send signals and retrieve visitor segments from Audience Manager:
Chromecast
-
getVisitorProfile() -
Returns the visitor profile that was most recently obtained. Returns an empty object if no signal has been submitted yet.
ADBMobile.audienceManager.getVisitorProfile();
-
getDpid() -
Returns the visitor profile that was most recently obtained. Returns an empty object if no signal has been submitted yet.
ADBMobile.audienceManager.getDpid();
-
getDpuuid() -
Returns the current DPUUID.
ADBMobile.audienceManager.getDpuuid();
-
setDpidAndDpuuid() -
Sets the DPID and DPUUID. If DPID and DPUUID are set, they will be sent with each signal.
ADBMobile.audienceManager.setDpidAndDpuuid("myDpid", "myDpuuid");
-
submitSignal() -
Sends audience management a signal with traits.
ADBMobile.audienceManager.submitSignal({"sampleTrait":"sampleValue"});
Roku
-
audienceVisitorProfile -
Returns the visitor profile that was most recently obtained. Returns an empty object if no signal has been submitted yet.
ADBMobile().audienceVisitorProfile()
-
audienceDpid -
Returns the visitor profile that was most recently obtained. Returns an empty obje t if no signal has been submitted yet.
ADBMobile().audienceDpid()
-
audienceDpuuid -
Returns the current DPUUID.
ADBMobile().audienceDpuuid()
-
audienceSetDpidAndDpuuid -
Sets the DPID and DPUUID. If DPID and DPUUID are set, they will be sent with each signal.
ADBMobile().audienceSetDpidAndDpuuid("myDpid", "myDpuuid")
-
audienceSubmitSignal -
Sends audience management a signal with traits.
traitData = {} traitData["sampleTrait"] = "sampleValue" ADBMobile().audienceSubmitSignal(traitData)