> ## 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/marketing-solutions/marketplace-performance-outcomes/seller-campaigns/{sellerCampaignId}

> Return details for a seller campaign. For example,
            
    {
        "id": "543210.123456",
        "sellerId": "543210",
        "campaignId": 123456,
        "bid": 1.55,
        "suspendedSince": "2018-07-30T15:15:24.813",
        "suspensionReasons": [
            "NoMoreBudget"
        ]
    }
            
An active seller campaign is one for which the value of <b>suspendedSince</b> is null and
the <b>bid</b> is positive. The currency of the bid is the <b>bidCurrency</b> of the
associated campaign.
            
Any active seller campaign must also have an active total (capped or uncapped) budget.
It may optionally have an active daily budget as well to further limit spending.
            
Suspension reasons:
- ManuallyStopped: The Seller-Campaign has been manually paused. This is not related to the other suspension reasons.
- NoBudgetDefined: No valid budget has been linked to the Seller-Campaign.
- NoCpcDefined: No CPC has been set for the Seller-Campaign.
- NoMoreBudget: The current budget of the Seller-Campaign has been exhausted.
- RemovedFromCatalog: All the products of the Seller-Campaign have been deleted from the catalog.
- NotYetStarted: The Seller-Campaign has just been created and has not yet been processed.



## OpenAPI

````yaml https://api.criteo.com/2025-07/marketingsolutions/open-api-specifications.json get /2025-07/marketing-solutions/marketplace-performance-outcomes/seller-campaigns/{sellerCampaignId}
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2025-07
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
paths:
  /2025-07/marketing-solutions/marketplace-performance-outcomes/seller-campaigns/{sellerCampaignId}:
    get:
      tags:
        - Campaign
      summary: >-
        /2025-07/marketing-solutions/marketplace-performance-outcomes/seller-campaigns/{sellerCampaignId}
      description: "Return details for a seller campaign. For example,\r\n            \r\n    {\r\n        \"id\": \"543210.123456\",\r\n        \"sellerId\": \"543210\",\r\n        \"campaignId\": 123456,\r\n        \"bid\": 1.55,\r\n        \"suspendedSince\": \"2018-07-30T15:15:24.813\",\r\n        \"suspensionReasons\": [\r\n            \"NoMoreBudget\"\r\n        ]\r\n    }\r\n            \r\nAn active seller campaign is one for which the value of <b>suspendedSince</b> is null and\r\nthe <b>bid</b> is positive. The currency of the bid is the <b>bidCurrency</b> of the\r\nassociated campaign.\r\n            \r\nAny active seller campaign must also have an active total (capped or uncapped) budget.\r\nIt may optionally have an active daily budget as well to further limit spending.\r\n            \r\nSuspension reasons:\r\n- ManuallyStopped: The Seller-Campaign has been manually paused. This is not related to the other suspension reasons.\r\n- NoBudgetDefined: No valid budget has been linked to the Seller-Campaign.\r\n- NoCpcDefined: No CPC has been set for the Seller-Campaign.\r\n- NoMoreBudget: The current budget of the Seller-Campaign has been exhausted.\r\n- RemovedFromCatalog: All the products of the Seller-Campaign have been deleted from the catalog.\r\n- NotYetStarted: The Seller-Campaign has just been created and has not yet been processed."
      operationId: GetMarketplaceSellerCampaign
      parameters:
        - name: sellerCampaignId
          in: path
          description: >-
            Composite id of the seller campaign in the format
            `{sellerId}.{campaignId}`, e.g. `2578464.187625`.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $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: {}

````