> ## Documentation Index
> Fetch the complete documentation index at: https://developers.criteo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /experimental/catalog/merchants/{merchant-id}/ingestion/reports

> List the catalog ingestions of a merchant, most recent first, with their type, status and timing.



## OpenAPI

````yaml https://api.criteo.com/experimental/marketingsolutions/open-api-specifications.json get /experimental/catalog/merchants/{merchant-id}/ingestion/reports
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: Experimental
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Catalog
  - name: Creative
  - name: Gateway
  - name: OnSiteRecommendation
  - name: Reco
paths:
  /experimental/catalog/merchants/{merchant-id}/ingestion/reports:
    get:
      tags:
        - Catalog
      summary: /experimental/catalog/merchants/{merchant-id}/ingestion/reports
      description: >-
        List the catalog ingestions of a merchant, most recent first, with their
        type, status and timing.
      operationId: GetCatalogIngestionReports
      parameters:
        - name: limit
          in: query
          description: Maximum number of ingestion reports returned in the page.
          schema:
            maximum: 100
            minimum: 1
            type: integer
            format: int32
            default: 25
        - name: merchant-id
          in: path
          description: Identifies the merchant whose catalog ingestions are reported.
          required: true
          schema:
            type: string
        - name: offset
          in: query
          description: >-
            Index of the first ingestion report of the page, used to page
            through the collection.
          schema:
            type: integer
            format: int32
            default: 0
      responses:
        '200':
          description: The page of catalog ingestion reports.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogIngestionReportListResponse'
      security:
        - oauth:
            - MarketingSolutions_Catalog_Read
components:
  schemas:
    CatalogIngestionReportListResponse:
      required:
        - data
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CatalogIngestionReportResource'
          nullable: true
        errors:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
        meta:
          $ref: '#/components/schemas/PaginationMetadata'
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
      description: Paginated response holding the catalog ingestion reports of a merchant.
      nullable: true
    CatalogIngestionReportResource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CatalogIngestionReport'
        id:
          type: string
          nullable: true
        type:
          type: string
          nullable: true
      description: Resource holding the basic information of a catalog ingestion.
      nullable: true
    CommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s)
          nullable: true
        stackTrace:
          type: string
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        traceIdentifier:
          type: string
          description: >-
            The request correlation ID this problem comes from. (deprecated, use
            traceId instead)
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      description: Common problem object.
    PaginationMetadata:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        totalCount:
          type: integer
          format: int32
      description: Pagination applied to the returned collection.
      nullable: true
    CatalogIngestionReport:
      type: object
      properties:
        componentId:
          type: string
          nullable: true
        duration:
          type: string
          nullable: true
        endTime:
          type: string
          format: date-time
          nullable: true
        ingestionStatus:
          $ref: '#/components/schemas/IngestionStatus'
        ingestionType:
          $ref: '#/components/schemas/IngestionType'
        merchantId:
          type: string
          nullable: true
        multiSourceReportingStatus:
          $ref: '#/components/schemas/MultiSourceReportingStatus'
        startTime:
          type: string
          format: date-time
      description: >-
        Identification, timing and status of a single catalog ingestion. The
        summary report of the same ingestion repeats these fields and adds its
        volume, delta and data quality.
      nullable: true
    IngestionStatus:
      enum:
        - inProgress
        - finished
        - failed
        - blocked
      type: string
      description: Status of the ingestion.
      x-enumNames:
        - InProgress
        - Finished
        - Failed
        - Blocked
      x-enum-varnames:
        - InProgress
        - Finished
        - Failed
        - Blocked
    IngestionType:
      enum:
        - catalogImport
        - productImporter
      type: string
      description: Pipeline that ran the ingestion.
      x-enumNames:
        - CatalogImport
        - ProductImporter
      x-enum-varnames:
        - CatalogImport
        - ProductImporter
    MultiSourceReportingStatus:
      enum:
        - notEnabled
        - inProgress
        - success
        - failed
      type: string
      description: Status of the Multi-Source Catalog enrichment for the ingestion.
      x-enumNames:
        - NotEnabled
        - InProgress
        - Success
        - Failed
      x-enum-varnames:
        - NotEnabled
        - InProgress
        - Success
        - Failed
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````