Adobe Analytics

The Switchboard Adobe Analytics connector provides daily breakdowns of metrics by segments and dimensions. 

Prerequisites

To configure access to the Switchboard Adobe Analytics connector, you need:

  • Private Key
  • Client Secret
  • API Key
  • Tech Account Id
  • Organization Id
  • Company id
  • Adobe “rsid”

To obtain these credentials, contact your Adobe Analytics Account Manager.

Scheduling

The Adobe Analytics connector can be scheduled to ingest data once per day at a user-defined hour and timezone. See Daily Scheduling for more information.

Switchboard Script Syntax

import adobe_analytics_segment_by_page from {
   type: "adobe_analytics";
   key: "adobe_analytics_key";
   dimension: "page";
   segment: "12345";
   metrics: [
       "pageviews",
       "visits",
       "visitors",
       "bounces",
       "entries",
       "exits",
       "itemtimespent"
   ];
   custom_metrics: [
       "cm200000403_12345",
   ];
   rsid: "company1";
   company_id: "company1";
   } using {
       report_date: datetime;
       itemId: string;
       value: string;
       "pageviews": float;
       "visits": float;
       "visitors": float;
       "bounces": float;
       "entries": float;
       "exits": float;
       "itemtimespent": float;
       "cm200000403_12345": float;
   }; 

Parameters

Parameter

Description

Required/Optional?

dimensions

A list of requested dimensions.

For dimensions descriptions, see Analytics API Reports User Guide.

Required

metrics

A list of requested metrics.

For metrics descriptions, see Analytics API Reports User Guide.

Required

rsid

Adobe rsid number obtained from your Adobe Analytics Account Manager

Required

company_id

Company ID obtained from your Adobe Analytics Account Manager

Required

custom_metrics

A list of custom metrics unique to your organization

At least one value is required

segment

The segment name as set up in the globalFilters property in Adobe

At least one value is required