Expand my Community achievements bar.

Webinar: Adobe Customer Journey Analytics Product Innovations: A Quarterly Overview. Come learn for the Adobe Analytics Product team who will be covering AJO reporting, Graph-based Stitching, guided analysis for CJA, and more!
SOLVED

Why isn't this API request working - i don't get it

Avatar

Level 1

Hi Forum,

The following request is working fine

---------------------------------------------------------

var report = new Report({

id: "RefTypeDirect",

dataElement: "#RefTypeDirect",

totalElement: "#refTotalsDirect",

loadingDisable: true,

animateTotal: true

});

report.run({

"reportDescription":{

"reportSuiteID": config.reportSuite,

"dateFrom": new Date(new Date().setDate(new Date().getDate()-90)).toJSON().slice(0,10),

"dateTo": new Date().toJSON().slice(0,10),

//"dateGranularity": "week",

"metrics": [

{ "id": "instances" }

],

"elements": [

   { "id": "referrertype" }

                            ],

                            "segments": [

                            {

                                "element": "referrertype",

                                    "selected": ["Typed/Bookmarked"]

},

],

"currentData": "true"

}

}

---------------------------------------------------------

But the following doesn't work...i can't see why...same syntax but difference dimension?!?

var report = new Report({

id: "devTypeDesktop",

dataElement: "#devTypeDesktop",

totalElement: "#devTotalsDesktop",

loadingDisable: true,

animateTotal: true

});

report.run({

"reportDescription":{

"reportSuiteID": config.reportSuite,

"dateFrom": new Date(new Date().setDate(new Date().getDate()-90)).toJSON().slice(0,10),

"dateTo": new Date().toJSON().slice(0,10),

//"dateGranularity": "week",

"metrics": [

{ "id": "instances" }

],

"elements": [

   { "id": "mobileDeviceType" }

                            ],

                            "segments": [

                            {

                                "element": "mobileDeviceType",

                                    "selected": ["Other"]

},

],

"currentData": "true"

}

}

1 Accepted Solution

Avatar

Correct answer by
Level 10

Since this is an older post, I'm assuming you've solved this issue. Incase others find this post, I'll post the link to the documentation below:

https://www.adobe.io/apis/experiencecloud/analytics/docs.html

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Since this is an older post, I'm assuming you've solved this issue. Incase others find this post, I'll post the link to the documentation below:

https://www.adobe.io/apis/experiencecloud/analytics/docs.html