> ## 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-10/marketing-solutions/marketplace-performance-outcomes/advertisers/{advertiserId}/campaigns

> Get the collection of CRP campaigns associated with the advertiserId.



## OpenAPI

````yaml https://api.criteo.com/2025-10/marketingsolutions/open-api-specifications.json get /2025-10/marketing-solutions/marketplace-performance-outcomes/advertisers/{advertiserId}/campaigns
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2025-10
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
  - name: Reco
paths:
  /2025-10/marketing-solutions/marketplace-performance-outcomes/advertisers/{advertiserId}/campaigns:
    get:
      tags:
        - Campaign
      summary: >-
        /2025-10/marketing-solutions/marketplace-performance-outcomes/advertisers/{advertiserId}/campaigns
      description: Get the collection of CRP campaigns associated with the advertiserId.
      operationId: GetMarketplaceCampaignsByAdvertiser
      parameters:
        - name: advertiserId
          in: path
          description: Id of the advertiser
          required: true
          schema:
            type: string
            format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdvertiserCampaignMessage'
      security:
        - oauth:
            - MarketingSolutions_Campaign_Read
components:
  schemas:
    AdvertiserCampaignMessage:
      type: object
      properties:
        adSetDeliveryStatus:
          enum:
            - Running
            - Archived
            - NotRunning
          type: string
          description: Human-readable delivery status of the campaign's ad set
          readOnly: true
        campaignName:
          type: string
          description: Display name of the campaign
        id:
          type: integer
          description: Unique campaign identifier
          format: int32
        status:
          enum:
            - 0
            - 1
            - 2
          type: integer
          description: 'Numeric delivery status: 0 = Running, 1 = Archived, 2 = NotRunning'
          nullable: true
      description: >-
        Data representing a campaign for an advertiser. A campaign groups
        seller-campaigns and defines delivery settings.
      example:
        id: 436017
        campaignName: Sponsored Products - Main
        adSetDeliveryStatus: Running
        status: 0
      x-readonly-adSetDeliveryStatus: true
  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: {}

````