AAM API : ImportAccess Method

This article will explain how to import access to your python API wrapper. This access are required to realize the different operation on your Adobe Audience Manager account. The process to create the text file and import it in the API is important as you would need to repeat that if you have different account…

AAM API : Introduction

Hello everyone, This is the first post of a list on the Adobe Audience Manager API wrapper on python. I have been working on this quite long time ago but I couldn’t finish it really due to my other projects and my actual work. I am still learning that tool and it has quite an…

Create a .crt file with OpenSSL on Windows

This article will be a bit different than the normal technical article that treats about Python and data analysis. This article is just a simple guide to create a the require key and certificate necessary for some (most) of Adobe IO API. I am not a developers but I think that I understand quite good…

Adobe Analytics API : retrieveReport

On this post, I will explain the last method available with this API, the retrieveReport method. This method is the last one to be explained because it depends on the others. It works only with the report id that has been created after you send a statement to the Adobe Analytics endpoint. The report id…

Adobe Analytics API : getReport

The method getReport is the heart of the Adobe Analytics API for python. This is most of the time the reason why you would like to use this API. This method is the one that will return the data of your statement, we are going to see what kind of argument is possible to pass and…

Adobe Analytics API : getElements

On the Adobe Analytics API, the first method you can use from the library is the getElements. Why this getElements method ? When you want to start the API from Adobe Analytics, you first need to create the statement. As seen during the post that explains the Statement class, you can almost start empty from…

Adobe Analytics API : The statement class

The Statement Class in the Python Adobe Analytics API This Class (or method in the library) will provide you some additional methods to manipulate the statement you want to use for the Adobe Analytics API. The important information is that this is a class and therefore an instance hast to be created to really use…

Adobe Analytics API : Statement creation

When you want to use the Adobe Analytics, you will need to create statement as JSON object to the API. In order to do that, the Statement class allows you to retrieve a blank sheet of statement for you to play with, but I would always recommend to read the Adobe documentation. Adobe Analytics Statement…

Adobe Analytics API : Requirements

Starting Guide for the Adobe Analytics API Before you start using the module, there are several things that you need to do to ensure the possibility. Adobe prep side Make sure that you have a marketing cloud id and you are an administrator. Most of the method that the API uses are based on you…

Adobe Analytics API – Introduction

Introduction to Adobe Analytics API : 1.4 This post is the introduction for the tutorial of the python module of the Adobe Analytics API (v1.4). If you land here and want to get to know how to connect to the Adobe Analytics API 2.0 you may want to go to this blog post. In this…