Adobe analytics API python Request date preset issue | Community
Skip to main content
December 11, 2018
Solved

Adobe analytics API python Request date preset issue

  • December 11, 2018
  • 2 replies
  • 2384 views

Hi All,

I am using adobe analytics 2.0 API to automate reports using python.

Below is my python request code:-

report_def = ReportDefinition(metrics=['visits','Orders'],

                              dimensions=[{"id":"evar34","top": 500},{"id":"lasttouchchannel","top": 500}],

                              segemnts=[{"id":"s200000411_56a9c304e4b06f5aa20e9128"},{"id":"s200000411_57d1642be4b02a2dffb008a0"},{"id":"s200000411_57888bf3e4b0b892f6c5b4fe"}],

                              date_from='2018-12-01',

                             date_to= '2018-12-01',

                              granularity='day')

df1 = download_async(client, report_def, suite_ids=["clues-mapp","clues-msite", "clues-prod"])

Currently i need to manually type the date in the specified format.

Can I use preset dates like today, yesterday or 7 days ago ??

preset dates are available in both report builder and workspace.

Please help here.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Alexis_Cazes_

There is no preset.

You should use a logic in your code to build date on the fly and add it to your json request

2 replies

Alexis_Cazes_
Alexis_Cazes_Accepted solution
Level 10
December 11, 2018

There is no preset.

You should use a logic in your code to build date on the fly and add it to your json request

January 17, 2022

You should use a logic in your code to build date on the system and add it.

 

The Adobe Analytics APIs are a collection of APIs that power Adobe Analytics products like Analysis Workspace. The APIs allow for the creation of data rich user interfaces that you can use to manipulate and integrate data. You can also create reports to explore, get insights, or answer important questions about your data.

 

This is your david Request