Skip to main content

Adobe Analytics Connector

Adobe Analytics Manage companies, report suites, metrics, dimensions and more within Adobe Analytics.

Connections

Adobe Analytics OAuth 2.0 Connection

Connect to Adobe Analytics via OAuth 2.0

This connection uses OAuth 2.0, a common authentication mechanism for integrations. Read about how OAuth 2.0 works here.

InputCommentsDefault
Authorize URLThe OAuth 2.0 Authorization URL for Adobehttps://ims-na1.adobelogin.com/ims/authorize/v2
Token URLThe OAuth 2.0 Token URL for Adobehttps://ims-na1.adobelogin.com/ims/token/v3
ScopesScopes required for your appopenid AdobeID read_organizations additional_info.projectedProductContext additional_info.job_function
Client IDClient ID of your app for the API. Generate in the developer console.
Client SecretClient Secret of your app for the API

Actions

Get Current User

Get authenticated user and associated organizations and companies

InputCommentsDefault
Connection

Get Report Suite

Get a report suite by ID

InputCommentsDefault
Connection
Global Company ID
Report Suite ID

List Companies

List all companies the authenticate user can access

InputCommentsDefault
Connection

List Dimensions for Report Suite

Get a list of dimensions for a given report suite

InputCommentsDefault
Connection
Global Company ID
Report Suite ID

List Metrics for Report Suite

Get a list of metrics for a given report suite

InputCommentsDefault
Connection
Global Company ID
Report Suite ID

List Report Suites

Retrieve a list of report suites

InputCommentsDefault
Connection
Global Company ID

List Virtual Report Suites

Retrieve a list of virtual report suites

InputCommentsDefault
Connection
Global Company ID

Raw Request

Send raw HTTP request to Adobe Analytics

InputCommentsDefault
Connection
URLInput the path only (/discovery/me), The base URL is already included (https://analytics.adobe.io). For example, to connect to https://analytics.adobe.io/discovery/me, only /discovery/me is entered in this field.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Debug RequestEnabling this flag will log out the current request.false
Retry Delay (ms)The delay in milliseconds between retries.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type.false
Max Retry CountThe maximum number of retries to attempt.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries.false

Run Report

Run a report

InputCommentsDefault
Connection
Global Company ID
Report Suite ID
Dimension
Report Request BodyThe body of the report request. Specify all fields besides dimension and report ID here.
{
"globalFilters": [
{
"type": "dateRange",
"dateRange": "YYYY-12-31T00:00:00.000/YYYY-01-31T23:59:59.999"
}
],
"metricContainer": {
"metrics": [
{
"columnId": "0",
"id": "metrics/pageviews",
"filters": [
"0"
]
}
],
"metricFilters": [
{
"id": "0",
"type": "dateRange",
"dateRange": "YYYY-12-31T00:00:00.000/YYYY-01-31T23:59:59.999"
}
]
},
"settings": {
"dimensionSort": "asc",
"limit": "10",
"page": "2"
}
}