I was trying 1.4 Data warehouse API,@ was able to get the response too, but encountered one limitation like below:
"error_description": "The maximum number of elements supported is 4"
if I give more than 4 elements, its throwing error, is there any way to add more elements?
"elements":[
{
"id" : "zip"
},
{
"id" : "evar8"
},
{
"id" : "evar6"
},
{
"id" : "evar77"
},
{
"id" : "evar37"
}
Solved! Go to Solution.
Views
Replies
Total Likes
For data warehouse, you need to specify source as warehouse.
Try this code:
{
"reportDescription":{
"reportSuiteID":"<INSERT-RSID-HERE>",
"dateFrom":"2019-08-10",
"dateTo":"2019-08-11",
"dateGranularity":"day",
"source":"warehouse",
"metrics":[
{"id":"event10"}
],
"elements":[
{"id" : "zip"},
{"id" : "evar8"},
{"id" : "evar6"},
{"id" : "evar77"},
{"id" : "evar37"}
]
}
}
Views
Replies
Total Likes
Hi Ravi Prasad,
Might be this link helps you
Thanks,
Balaji
What is the complete API request? Can you blank out the RSID and share?
Views
Replies
Total Likes
{
"reportDescription":{
"reportSuiteID":"",
"dateFrom":"2019-08-10",
"dateTo":"2019-08-11",
"dateGranularity":"day",
"metrics":[
{
"id":"event10"
}
],
"elements":[
{
"id" : ""
},
{
"id" : ""
},
{
"id" : ""
},
{
"id" : ""
},
{
"id" : ""
}
]
}
}
if the elements upto 4 its giving response, but more than 4 throwing error
Views
Replies
Total Likes
For data warehouse, you need to specify source as warehouse.
Try this code:
{
"reportDescription":{
"reportSuiteID":"<INSERT-RSID-HERE>",
"dateFrom":"2019-08-10",
"dateTo":"2019-08-11",
"dateGranularity":"day",
"source":"warehouse",
"metrics":[
{"id":"event10"}
],
"elements":[
{"id" : "zip"},
{"id" : "evar8"},
{"id" : "evar6"},
{"id" : "evar77"},
{"id" : "evar37"}
]
}
}
Views
Replies
Total Likes
Already tried with this , was getting below error
{
"error": "report_unsupported",
"error_description": "This report type is unsupported by this method",
"error_uri": "https://marketing.adobe.com/developer/documentation/analytics-reporting-1-4/errors"
}
Views
Replies
Total Likes
Did you use my code? I just ran with no problems at all.
Are you adding any additional parameters?
Views
Replies
Total Likes
I used the same code..Is there any limitation for the report suit?
Views
Replies
Total Likes
And am using postman to get the respose
Views
Replies
Total Likes
I am using Postman as well:
What's your endpoint?
Views
Replies
Total Likes
https://api5.omniture.com/admin/1.4/rest/?method=Report.Run
is the endpoint am using
Views
Replies
Total Likes
The method is incorrect. The correct method is "Report.Queue".
Also, can you try with just api.omniture.com. The "5" is not necessary.
Report.Run is for real time report. It is not for Data Warehouse. Thus the request error.
okay, got it, So to get the response we need to provide the FTP details in the request?
Can we point to S3 location other than FTP?
Views
Replies
Total Likes
The response you receive is the report ID. Next, you need to do a request with this endpoint:
https://api.omniture.com/admin/1.4/rest/?method=Report.Get
{
"reportID": <INSERT-REPORT-ID>
}
This will give a JSON response, if the report is ready (processed). Otherwise it will give report not ready error.
You can also provide FTP/SFTP details if you want the file to be delivered to a file server. S3 is not supported.
Do any of these replies provide an answer to your original question? If so, please mark the most correct answer. If not, can you provide some additional details to help the community better answer your question.
Views
Replies
Total Likes