Adobe Analytics Metrics mappings API

Methods to map Analytics metrics to CJA data views within an XDM schema

Operations 4

GET /mapping/metrics/csv Retrieve metrics mappings as CSV file #
PUT /mapping/metrics/csv Update metrics mappings with CSV file #
POST /mapping/metrics/csv Create metrics mappings with CSV file #
DELETE /mapping/metrics/all Delete all metrics mappings #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/adobe-analytics-metrics-mappings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

adobe-analytics-metrics-mappings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Analytics 2.0 Component Migration API. Metrics mappings API
  description: "Adobe Analytics 2.0 Component Migration. Migrate components from Adobe Analytics to Customer Journey Analytics (AA to CJA).\n\n Note: Adobe may add optional request and response members (name/value pairs) to existing API objects at any time and without notice or changes in versioning. Adobe recommends that you refer to the API documentation of any third-party tool you integrate with our APIs so that such additions are ignored in processing if not understood. If implemented properly, such additions are non-breaking changes for your implementation. Adobe will not remove parameters or add required parameters without first providing standard notification through release notes."
  version: '1.0'
servers:
- url: https://analytics.adobe.io/api
tags:
- name: Metrics mappings
  description: Methods to map Analytics metrics to CJA data views within an XDM schema
paths:
  /mapping/metrics/csv:
    get:
      tags:
      - Metrics mappings
      summary: Retrieve metrics mappings as CSV file
      description: Retrieve metrics mappings for specified *rsid* and *dataId*
      operationId: getMappingsAsCSV_3
      parameters:
      - name: rsid
        in: query
        description: '*rsid* in Analytics'
        required: true
        schema:
          type: string
      - name: dataId
        in: query
        description: Data ID in CJA
        required: true
        schema:
          type: string
      - name: metricIds
        in: query
        description: Filter list to include metrics mappings for only the specified comma-delimited list of metric IDs
        schema:
          type: string
      responses:
        '200':
          description: Dimensions mappings retrieved successfully
          content:
            text/csv:
              schema:
                $ref: '#/components/schemas/Response'
      security:
      - x-gw-ims-org-id: []
      - x-user-auth: []
    put:
      tags:
      - Metrics mappings
      summary: Update metrics mappings with CSV file
      description: Update CSV file of metrics mappings for specified *rsid* and *dataId*
      operationId: updateMappingByCSV_3
      parameters:
      - name: rsid
        in: query
        description: '*rsid* in Analytics'
        required: true
        schema:
          type: string
      - name: dataId
        in: query
        description: Data ID in CJA
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: object
      responses:
        '200':
          description: Metrics mappings updated successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FieldMappingDto'
      security:
      - x-gw-ims-org-id: []
      - x-user-auth: []
    post:
      tags:
      - Metrics mappings
      summary: Create metrics mappings with CSV file
      description: Upload CSV file of metrics mappings to override existing mappings for specified *rsid* and *dataId*
      operationId: createMappingByCSV_3
      parameters:
      - name: rsid
        in: query
        description: '*rsid* in Analytics'
        required: true
        schema:
          type: string
      - name: dataId
        in: query
        description: Data ID in CJA
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: object
      responses:
        '200':
          description: Metrics mappings created successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FieldMappingDto'
      security:
      - x-gw-ims-org-id: []
      - x-user-auth: []
  /mapping/metrics/all:
    delete:
      tags:
      - Metrics mappings
      summary: Delete all metrics mappings
      description: Delete all metrics mappings for the specified report suite and data view IDs. If there are no mappings, this will return a successful response.
      operationId: deleteAllMappings_3
      parameters:
      - name: rsid
        in: query
        description: '*rsid* in Analytics'
        required: true
        schema:
          type: string
      - name: dataId
        in: query
        description: Data ID in CJA
        required: true
        schema:
          type: string
      responses:
        '200':
          description: All metrics mapping deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteControllerResponse'
      security:
      - x-gw-ims-org-id: []
      - x-user-auth: []
components:
  schemas:
    DeleteControllerResponse:
      properties:
        result:
          type: string
          enum:
          - success
          - failure
          - partialSuccess
        method:
          type: string
        message:
          type: string
    FieldMappingDto:
      properties:
        cjaId:
          type: string
        dataId:
          type: string
        xdmMapped:
          type: boolean
        aaId:
          type: string
        rsid:
          type: string
        xdmNotes:
          type: string
    Response:
      type: string
      format: binary
  securitySchemes:
    x-service-auth:
      type: apiKey
      description: IMS service token
      name: x-service-auth
      in: header
    x-gw-ims-org-id:
      type: apiKey
      description: Gateway IMS Org ID
      name: x-gw-ims-org-id
      in: header
    x-proxy-global-company-id:
      type: apiKey
      description: Global Company ID
      name: x-proxy-global-company-id
      in: header
    x-user-auth:
      type: apiKey
      description: IMS user token
      name: x-user-auth
      in: header