Adobe Analytics Component migration API

API Methods for migrating projects with components from Adobe Analytics to Customer Journey Analytics

Operations 3

GET /projects/{projectId}/summary Retrieve project summary #
POST /projects/bulk/migrate Create project migration #
GET /projects/bulk/status Retrieve bulk migration projects status #

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-component-migration-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-component-migration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Analytics 2.0 API. Component migration 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: Component migration
  description: API Methods for migrating projects with components from Adobe Analytics to Customer Journey Analytics
paths:
  /projects/{projectId}/summary:
    get:
      tags:
      - Component migration
      summary: Retrieve project summary
      description: Retrieve summary for specified project ID
      operationId: summary_1
      parameters:
      - name: projectId
        in: path
        description: The project ID to be moved to CJA
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Project migration summary retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MigrationEventStatusEntity'
      security:
      - x-gw-ims-org-id: []
      - x-proxy-global-company-id: []
      - x-user-auth: []
  /projects/bulk/migrate:
    post:
      tags:
      - Component migration
      summary: Create project migration
      description: Create bulk project migration for specified project IDs
      operationId: bulkMigrate_1
      responses:
        '200':
          description: Projects migrated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ControllerResponse'
      security:
      - x-gw-ims-org-id: []
      - x-proxy-global-company-id: []
      - x-user-auth: []
  /projects/bulk/status:
    get:
      tags:
      - Component migration
      summary: Retrieve bulk migration projects status
      description: Retrieve statuses for specified project IDs
      operationId: RetrieveBulkProjectStatus_1
      responses:
        '200':
          description: Bulk project migration statuses retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IMigrationEvent'
      security:
      - x-gw-ims-org-id: []
      - x-proxy-global-company-id: []
      - x-user-auth: []
components:
  schemas:
    IMigrationEvent:
      properties:
        cjaId:
          type: string
        aaId:
          type: string
        migrationStatus:
          type: string
          enum:
          - STARTED
          - COMPLETED
          - FAILED
        migratedTime:
          type: string
          format: date-time
        type:
          type: string
        globalCompanyId:
          type: string
        imsOrgId:
          type: string
    ControllerResponse:
      properties:
        result:
          type: string
          enum:
          - success
          - failure
          - partialSuccess
        method:
          type: string
        message:
          type: string
    MigrationEventStatusEntity:
      properties:
        imsUserName:
          type: string
        cjaName:
          type: string
        aaName:
          type: string
        type:
          type: string
        result:
          type: object
          properties:
            empty:
              type: boolean
          additionalProperties:
            type: object
        cjaId:
          type: string
        rsidDataIdMap:
          type: object
          additionalProperties:
            type: string
        aaId:
          type: string
        migratorLogin:
          type: string
        migratorName:
          type: string
        migrationStatus:
          type: string
          enum:
          - STARTED
          - COMPLETED
          - FAILED
        id:
          type: string
          format: uuid
        imsUserId:
          type: string
        migratedTime:
          type: string
          format: date-time
        globalCompanyId:
          type: string
        imsOrgId:
          type: string
  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