Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Adobe analytics API python Request date preset issue

Avatar

Level 1

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.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

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

Avatar

Level 1

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