Adobe Analytics Manage API

API for users to resend, reprocess and redo datafeed requests with a user token

Operations 3

PUT /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/redo Redo a datafeed by request ID. It first checks if a resend is possible, if not, it reprocesses the request. #
PUT /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/reprocess Reprocess a datafeed by request ID #
PUT /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/resend Resend a data feed by request ID #

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-manage-api-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-manage-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Analytics 2.0 Data Feed API. Create, update retrieve, and manage data feeds and column presets. Manage API
  description: "Adobe Analytics Data Feed API 2.0\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: v2
servers:
- url: https://analytics.adobe.io/api
tags:
- name: Manage API
  description: API for users to resend, reprocess and redo datafeed requests with a user token
paths:
  /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/redo:
    put:
      tags:
      - Manage API
      summary: Redo a datafeed by request ID. It first checks if a resend is possible, if not, it reprocesses the request.
      operationId: redoDatafeed_1
      parameters:
      - name: globalCompanyId
        in: path
        description: The Global Company ID for the Adobe Analytics organization
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/authorization'
      - $ref: '#/components/parameters/x-api-key'
      - name: feedId
        in: path
        description: The feed ID
        required: true
        schema:
          type: integer
          format: int32
      - name: requestId
        in: path
        description: The datafeed request ID
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '400':
          description: Bad Request - Unable to resend request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '404':
          description: Datafeed not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '500':
          description: Error occurred while redo datafeed request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '200':
          description: The redo request succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataFeedView'
  /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/reprocess:
    put:
      tags:
      - Manage API
      summary: Reprocess a datafeed by request ID
      operationId: reprocessDatafeed_1
      parameters:
      - name: globalCompanyId
        in: path
        description: The Global Company ID for the Adobe Analytics organization
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/authorization'
      - $ref: '#/components/parameters/x-api-key'
      - name: feedId
        in: path
        description: The feed ID
        required: true
        schema:
          type: integer
          format: int32
      - name: requestId
        in: path
        description: The datafeed request ID
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '400':
          description: Bad Request - Unable to resend request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '404':
          description: Datafeed not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '500':
          description: Error occurred while reprocess datafeed request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '200':
          description: The reprocess request succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataFeedView'
  /{globalCompanyId}/data_feeds/datafeed/{feedId}/{requestId}/resend:
    put:
      tags:
      - Manage API
      summary: Resend a data feed by request ID
      operationId: resendDatafeed_1
      parameters:
      - name: globalCompanyId
        in: path
        description: The Global Company ID for the Adobe Analytics organization
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/authorization'
      - $ref: '#/components/parameters/x-api-key'
      - name: feedId
        in: path
        description: The feed ID
        required: true
        schema:
          type: integer
          format: int32
      - name: requestId
        in: path
        description: The datafeed request ID
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '400':
          description: Bad Request - Unable to resend request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '404':
          description: Datafeed not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '500':
          description: Error occurred while resending datafeed request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsAsrErrorResponse'
        '200':
          description: The resend request succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataFeedView'
components:
  schemas:
    Schedule:
      type: object
      properties:
        startDate:
          type: string
        endDate:
          type: string
        interval:
          type: string
        delay:
          type: integer
          format: int32
    DataFeedView:
      properties:
        dynamicLookups:
          type: boolean
        schedule:
          $ref: '#/components/schemas/Schedule'
        delivery:
          $ref: '#/components/schemas/Delivery'
        metadata:
          $ref: '#/components/schemas/Metadata'
        columnPreset:
          type: integer
          format: int32
        notes:
          type: string
        feedName:
          type: string
        rsid:
          type: string
        lateHits:
          $ref: '#/components/schemas/LateHits'
        packaging:
          $ref: '#/components/schemas/Packaging'
        replaceEscapedChars:
          type: boolean
    Delivery:
      type: object
      properties:
        cloudLocationUUID:
          type: string
        notificationEmail:
          type: array
          items:
            type: string
    Packaging:
      type: object
      properties:
        type:
          type: string
        chunkSize:
          type: integer
          format: int32
        compression:
          type: string
        manifest:
          type: string
        noDataManifest:
          type: boolean
    AnalyticsAsrErrorResponse:
      properties:
        errorDescription:
          type: string
        errorCode:
          type: string
        errorId:
          type: string
    LateHits:
      type: object
      properties:
        enabled:
          type: boolean
        lookback:
          type: integer
          format: int32
    Metadata:
      type: object
      properties:
        feedId:
          type: integer
          format: int32
        feedState:
          type: string
        timeZone:
          type: string
        createdBy:
          type: string
        creationDate:
          type: string
        modifiedBy:
          type: string
        modificationDate:
          type: string
      description: Metadata for DataFeedView
  parameters:
    authorization:
      name: Authorization
      in: header
      description: The access token copied from your AA API client integration, prefixed with "Bearer ".
      required: true
      schema:
        type: string
    x-api-key:
      name: x-api-key
      in: header
      description: The API key copied from your AA API client integration. For more information on how to obtain this value, see [Getting started with the CJA API](https://developer.adobe.com/cja-apis/docs/getting-started/).
      required: true
      schema:
        type: string