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

# /2026-01/marketing-solutions/marketplace-performance-outcomes/sellers/{sellerId}/seller-campaigns

> Return a collection of seller campaigns for this seller filtered by optional filter parameters.
If all parameters are omitted the entire collection to which the user has
access is returned. Returned sellers must satisfy all supplied filter
criteria if multiple parameters are used. See the seller campaigns endpoint for additional details.



## OpenAPI

````yaml https://api.criteo.com/2026-01/marketingsolutions/open-api-specifications.json get /2026-01/marketing-solutions/marketplace-performance-outcomes/sellers/{sellerId}/seller-campaigns
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2026-01
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
  - name: Reco
paths:
  /2026-01/marketing-solutions/marketplace-performance-outcomes/sellers/{sellerId}/seller-campaigns:
    get:
      tags:
        - Campaign
      summary: >-
        /2026-01/marketing-solutions/marketplace-performance-outcomes/sellers/{sellerId}/seller-campaigns
      description: "Return a collection of seller campaigns for this seller filtered by optional filter parameters.\r\nIf all parameters are omitted the entire collection to which the user has\r\naccess is returned. Returned sellers must satisfy all supplied filter\r\ncriteria if multiple parameters are used. See the seller campaigns endpoint for additional details."
      operationId: GetMarketplaceSellerCampaignsBySeller
      parameters:
        - name: budgetStatus
          in: query
          description: Return only seller campaigns whose budget has the given status.
          schema:
            enum:
              - Archived
              - Current
              - Scheduled
            type: string
        - name: campaignId
          in: query
          description: Return only seller campaigns associated with the given campaign.
          schema:
            type: integer
            format: int32
        - name: sellerId
          in: path
          description: Return only seller campaigns belonging to the given seller.
          required: true
          schema:
            type: string
        - name: sellerStatus
          in: query
          description: Return only seller campaigns for sellers with the given status.
          schema:
            enum:
              - Inactive
              - Active
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SellerCampaignMessage'
      security:
        - oauth:
            - MarketingSolutions_Campaign_Read
components:
  schemas:
    SellerCampaignMessage:
      type: object
      properties:
        bid:
          type: number
          description: >-
            Cost-per-click bid in the advertiser's currency. Null means no CPC
            is defined (seller-campaign will be suspended with NoCpcDefined).
            Set to 0 to stop delivery.
          format: double
          nullable: true
        campaignId:
          type: integer
          description: Identifier of the campaign this seller participates in
          format: int32
        id:
          type: string
          description: Composite identifier in format {sellerId}.{campaignId}
          readOnly: true
        productSet:
          $ref: '#/components/schemas/SellerCampaignProductSet'
        sellerId:
          type: string
          description: Unique identifier of the seller (merchant)
        suspendedSince:
          type: string
          description: >-
            Timestamp when the seller-campaign was suspended. Null means the
            seller-campaign is active.
          format: date-time
          nullable: true
        suspensionReasons:
          type: array
          items:
            $ref: '#/components/schemas/SellerCampaignSuspensionReason'
          description: >-
            List of reasons why the seller-campaign is suspended. Null means the
            seller-campaign is active.
          nullable: true
      description: >-
        A seller-campaign links a seller to a campaign, defining the CPC bid. A
        seller can participate in multiple campaigns, and a campaign can have
        multiple sellers.
      example:
        id: '10656107.248287'
        sellerId: '10656107'
        campaignId: 248287
        bid: 0.15
        suspendedSince: '2021-03-03T15:14:25.7970000+00:00'
        suspensionReasons:
          - NoBudgetDefined
      x-readonly-id: true
    SellerCampaignProductSet:
      type: object
      properties:
        productSetNumberOfProducts:
          type: integer
          description: Number of products matching the product set rules
          format: int32
          nullable: true
        productSetStatus:
          type: string
          description: Status of the product set (e.g. Active, Pending)
          nullable: true
        rules:
          type: array
          items:
            type: object
          description: Array of product set filtering rules
          nullable: true
      description: Product set targeting configuration for a seller-campaign
      nullable: true
    SellerCampaignSuspensionReason:
      enum:
        - NoMoreBudget
        - ManuallyStopped
        - NoBudgetDefined
        - NoCpcDefined
        - RemovedFromCatalog
        - NotYetStarted
        - NoMoreDailyBudget
        - Other
      type: string
      description: >-
        Reason why a seller-campaign is suspended. Values: ManuallyStopped
        (manually paused by the partner), NoBudgetDefined (no valid budget
        linked), NoCpcDefined (no CPC bid set), NoMoreBudget (lifetime budget
        fully spent), NoMoreDailyBudget (daily budget limit reached),
        RemovedFromCatalog (all products removed from catalog), NotYetStarted
        (newly created, not yet processed), Other (internal issue preventing
        delivery).
  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: {}

````