1.4 Reporting API
The Adobe Analytics 1.4 API provides a way for you to obtain reports without using Reports & Analytics or Analysis Workspace. It allows you to submit a request for a report, then you can submit a request to retrieve the report once it is done processing.
This API runs on a reporting engine used in previous versions of Adobe Analytics. Adobe recommends using the Adobe Analytics 2.0 Reporting API to retrieve reports.
The overarching workflow to retrieve a report is as follows:
- Call the method
Report.Queue
with areportDescription
JSON body that includes the desired report. The Reporting API returns a report ID. - Call the method to
Report.Get
using the report ID. If the report is ready, you receive a JSON object with the report. Otherwise, the API responds that the report is not yet ready.