> ## 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.

# /2025-07/retail-media/accounts/{accountId}/seller-catalog-export

> Create a request for a Catalog available to the indicated account.



## OpenAPI

````yaml https://api.criteo.com/2025-07/retailmedia/open-api-specifications.json post /2025-07/retail-media/accounts/{accountId}/seller-catalog-export
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2025-07
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2025-07/retail-media/accounts/{accountId}/seller-catalog-export:
    post:
      tags:
        - Campaign
      summary: /2025-07/retail-media/accounts/{accountId}/seller-catalog-export
      description: Create a request for a Catalog available to the indicated account.
      operationId: CreateSellerCatalogExport
      parameters:
        - name: accountId
          in: path
          description: The account to request the catalog for.
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ValueResourceInputOfSellerCatalogRequestV2'
        required: true
      responses:
        '200':
          description: Catalog request successfully created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityResourceOutcomeOfCatalogStatusV2'
      security:
        - oauth:
            - RetailMedia_Campaign_Manage
components:
  schemas:
    ValueResourceInputOfSellerCatalogRequestV2:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourceOfSellerCatalogRequestV2'
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API request for a single
        value object.
    EntityResourceOutcomeOfCatalogStatusV2:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/EntityResourceOfCatalogStatusV2'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Errors that occured during this call.
          nullable: true
          readOnly: true
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Warnings that occured during this call.
          nullable: true
          readOnly: true
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        entity.
    ValueResourceOfSellerCatalogRequestV2:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/SellerCatalogRequestV2'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
    EntityResourceOfCatalogStatusV2:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CatalogStatusV2'
        id:
          type: string
          description: Unique id of the entity.
          nullable: true
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A domain entity exposed by the API, identified by a unique id.
      nullable: true
    SdkApiRestCommonProblem:
      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
          description: ''
          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
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      additionalProperties: false
      description: Common problem object.
    SellerCatalogRequestV2:
      type: object
      properties:
        includeFields:
          type: array
          items:
            enum:
              - Unknown
              - Description
              - ImageUrl
              - GoogleCategory
              - RetailerName
              - Category
              - BrandName
            type: string
          description: >-
            Out of the optional fields, only the ones specified will be included
            in the catalog generated.
          nullable: true
        modifiedAfter:
          type: string
          description: Only products modified after this time will be returned.
          format: date-time
          nullable: true
        sellers:
          type: array
          items:
            $ref: '#/components/schemas/SellerIdentifierV2'
          description: A list of sellers to restrict the catalog to.
          nullable: true
      additionalProperties: false
      description: Used to request a catalog of seller SKUs
    CatalogStatusV2:
      required:
        - createdAt
        - status
      type: object
      properties:
        createdAt:
          type: string
          description: >-
            The time this catalog was created. Represented as a UTC ISO8601
            string.
          format: date-time
        fileSizeBytes:
          type: integer
          description: >-
            The size of this catalog in bytes. Available when this catalog
            reaches a success status.
          format: int32
          nullable: true
        md5Checksum:
          type: string
          description: "An MD5 checksum of the catalog for use in confirming complete and uncorrupted retrieval.\r\nAvailable when this catalog reaches a success status."
          nullable: true
        message:
          type: string
          description: An optional information message intended for developer consumption.
          nullable: true
        rowCount:
          type: integer
          description: "An indication of the number of products contained in this catalog. Available when\r\nthis catalog reaches a success status."
          format: int32
          nullable: true
        status:
          enum:
            - unknown
            - pending
            - success
            - failure
            - expired
          type: string
          description: An enumeration of the status of the catalog.
      additionalProperties: false
      description: The status of an asynchronous request to generate a catalog
      nullable: true
    SellerIdentifierV2:
      required:
        - retailerId
        - sellerId
      type: object
      properties:
        retailerId:
          type: string
          description: The retailer Id that the seller operates under
        sellerId:
          type: string
          description: The id for the seller based on the corresponding retailer
      additionalProperties: false
      description: Identifies a Unique Seller
  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: {}

````