Created
June 14, 2020 11:19
-
-
Save konosp/ec88717b635d4928fe10d5aea70ce108 to your computer and use it in GitHub Desktop.
Adobe Analytics API v2 - Request example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from analytics.mayhem.adobe import analytics_client | |
| ADOBE_ORG_ID = os.environ['ADOBE_ORG_ID'] | |
| SUBJECT_ACCOUNT = os.environ['SUBJECT_ACCOUNT'] | |
| CLIENT_ID = os.environ['CLIENT_ID'] | |
| CLIENT_SECRET = os.environ['CLIENT_SECRET'] | |
| PRIVATE_KEY_LOCATION = os.environ['PRIVATE_KEY_LOCATION'] | |
| ACCOUNT_ID = os.environ['ACCOUNT_ID'] | |
| REPORT_SUITE_ID = os.environ['REPORT_SUITE_ID'] | |
| aa = analytics_client( | |
| adobe_org_id = ADOBE_ORG_ID, | |
| subject_account = SUBJECT_ACCOUNT, | |
| client_id = CLIENT_ID, | |
| client_secret = CLIENT_SECRET, | |
| account_id = ACCOUNT_ID, | |
| private_key_location = PRIVATE_KEY_LOCATION | |
| ) | |
| aa.set_report_suite(report_suite_id = REPORT_SUITE_ID) | |
| aa.set_date_range(date_start = '2019-12-01', date_end= '2019-12-31') | |
| aa.add_metric(metric_name= 'metrics/visits') | |
| aa.add_metric(metric_name= 'metrics/orders') | |
| aa.add_metric(metric_name= 'metrics/event1') | |
| aa.add_dimension(dimension_name = 'variables/mobiledevicetype') | |
| aa.add_dimension(dimension_name = 'variables/lasttouchchannel') | |
| data = aa.get_report_multiple_breakdowns() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment