We’re currently experiencing a high volume of support requests, which may result in longer response times — thank you for your patience and understanding.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

This documentation is for the new preview UI. It’s still being refined and is subject to change. For documentation for the old UI, see Knowledge Base.

Article link copied to clipboard
Updated
Published
3 min read
Note on third‑party tools

We aim to provide accurate and helpful details about third‑party tools, but we can’t guarantee that this information is always complete or up to date. If you notice any discrepancies, feel free to share them in the feedback section below. For the most reliable information, please always refer to the third‑party tool’s official documentation.

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

To create an Adobe Analytics OAuth 2.0 app, first visit the Adobe Developer Console.

Enter your client ID and client secret when you create an Adobe Analytics connection.

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

Input Comments Default
Authorize URL The OAuth 2.0 Authorization URL for Adobe https://ims-na1.adobelogin.com/ims/authorize/v2
Token URL The OAuth 2.0 Token URL for Adobe https://ims-na1.adobelogin.com/ims/token/v3
Scopes Scopes required for your app openid AdobeID read_organizations additional_info.projectedProductContext additional_info.job_function
Client ID Client ID of your app for the API. Generate in the developer console.
Client Secret Client Secret of your app for the API

Actions

Get Current User

Get authenticated user and associated organizations and companies

Input Comments Default
Connection

Get Report Suite

Get a report suite by ID

Input Comments Default
Connection
Global Company ID
Report Suite ID

List Companies

List all companies the authenticate user can access

Input Comments Default
Connection

List Dimensions for Report Suite

Get a list of dimensions for a given report suite

Input Comments Default
Connection
Global Company ID
Report Suite ID

List Metrics for Report Suite

Get a list of metrics for a given report suite

Input Comments Default
Connection
Global Company ID
Report Suite ID

List Report Suites

Retrieve a list of report suites

Input Comments Default
Connection
Global Company ID

List Virtual Report Suites

Retrieve a list of virtual report suites

Input Comments Default
Connection
Global Company ID

Raw Request

Send raw HTTP request to Adobe Analytics

Input Comments Default
Connection
URL Input 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.
Method The HTTP method to use.
Data The HTTP body payload to send to the URL.
Form Data The Form Data to be sent as a multipart form upload.
File Data File Data to be sent as a multipart form upload.
File Data File Names File names to apply to the file data inputs. Keys must match the file data keys above.
Query Parameter A 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.
Header A list of headers to send with the request.
Response Type The type of data you expect in the response. You can request json, text, or binary data. json
Timeout The maximum time that a client will await a response to its request
Debug Request Enabling this flag will log out the current request. false
Retry Delay (ms) The delay in milliseconds between retries. 0
Retry On All Errors If true, retries on all erroneous responses regardless of type. false
Max Retry Count The maximum number of retries to attempt. 0
Use Exponential Backoff Specifies whether to use a pre-defined exponential backoff strategy for retries. false

Run Report

Run a report

Input Comments Default
Connection
Global Company ID
Report Suite ID
Dimension
Report Request Body The 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"
}
}