> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leadpipe.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a single suppression rule

> Deletes one rule by id. Authenticates via X-API-Key header.



## OpenAPI

````yaml https://api.aws53.cloud/openapi-data.json delete /v1/data/suppression-rules/{ruleId}
openapi: 3.1.0
info:
  title: Identification API
  version: 1.0.0
  description: >-
    Programmatic access to your visitor data and pixel management. Authenticate
    with your API key (X-API-Key header).
servers:
  - url: https://api.aws53.cloud
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Visitors
  - name: Pixels
  - name: Account
  - name: Visitor Suppression
paths:
  /v1/data/suppression-rules/{ruleId}:
    delete:
      tags:
        - Visitor Suppression
      summary: Delete a single suppression rule
      description: Deletes one rule by id. Authenticates via X-API-Key header.
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: ruleId
          in: path
      responses:
        '200':
          description: Rule deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuppressionRuleDeleted'
        '401':
          description: Missing or invalid API key
        '403':
          description: Revoked key or inactive organization
        '404':
          description: Rule not found
      security:
        - apiKeyAuth: []
components:
  schemas:
    SuppressionRuleDeleted:
      type: object
      properties:
        data:
          type: object
          properties:
            deleted:
              type: boolean
          required:
            - deleted
      required:
        - data
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Organization API key (sk_...). Get yours from Settings > API Keys in the
        dashboard.

````