> ## 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/ads/{id}

> Delete an Ad



## OpenAPI

````yaml https://api.criteo.com/2025-07/marketingsolutions/open-api-specifications.json delete /2025-07/marketing-solutions/ads/{id}
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/ads/{id}:
    delete:
      tags:
        - Creative
      summary: /2025-07/marketing-solutions/ads/{id}
      description: Delete an Ad
      operationId: DeleteAd
      parameters:
        - name: id
          in: path
          description: The ad identifier to delete.
          required: true
          schema:
            type: string
            format: int32
      responses:
        '204':
          description: The ad was deleted.
      security:
        - oauth:
            - MarketingSolutions_Creative_Manage
components:
  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: {}

````