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

# Delete a saved filter

> Delete a saved AI Finder filter. This is the cleanup counterpart of create_a_saved_filter. `provider` is required — saved filter IDs are independent per-provider sequences and can collide numerically. Only the saved filter's creator can delete it: a filter shared with the team is still visible to teammates via get_saved_filters, but visibility does not grant delete access, so a saved filter that exists but was created by someone else returns 404 (same as a saved filter that does not exist).

    > **Required scope:** `ACTIONS_WRITE`
    >
    > **Rate limit:** 30 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json delete /v1/saved-filters/{savedFilterId}
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/saved-filters/{savedFilterId}:
    delete:
      tags:
        - Saved Filters
      summary: Delete a saved filter
      description: >-
        Delete a saved AI Finder filter. This is the cleanup counterpart of
        create_a_saved_filter. `provider` is required — saved filter IDs are
        independent per-provider sequences and can collide numerically. Only the
        saved filter's creator can delete it: a filter shared with the team is
        still visible to teammates via get_saved_filters, but visibility does
        not grant delete access, so a saved filter that exists but was created
        by someone else returns 404 (same as a saved filter that does not
        exist).

            > **Required scope:** `ACTIONS_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      parameters:
        - schema:
            type: string
            description: The saved filter ID
          required: true
          description: The saved filter ID
          name: savedFilterId
          in: path
        - schema:
            type: string
            enum:
              - LINKEDIN
              - CRM_CONTACTS
              - CRM_COMPANIES
              - STORELEADS
              - CRUNCHBASE_COMPANIES
              - CRUNCHBASE_CONTACTS
              - CRUNCHBASE_INVESTORS
              - THEIRSTACK_TECHNOLOGY
              - THEIRSTACK_JOBS
              - GOOGLE_MAPS
            description: >-
              Saved filter provider to delete from. Required: saved filter IDs
              are independent per-provider sequences and can collide numerically
              across providers, so there is no safe default.
          required: true
          description: >-
            Saved filter provider to delete from. Required: saved filter IDs are
            independent per-provider sequences and can collide numerically
            across providers, so there is no safe default.
          name: provider
          in: query
      responses:
        '200':
          description: Saved filter deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      id:
                        type: number
                        description: Deleted saved filter ID.
                      provider:
                        type: string
                        enum:
                          - LINKEDIN
                          - CRM_CONTACTS
                          - CRM_COMPANIES
                          - STORELEADS
                          - CRUNCHBASE_COMPANIES
                          - CRUNCHBASE_CONTACTS
                          - CRUNCHBASE_INVESTORS
                          - THEIRSTACK_TECHNOLOGY
                          - THEIRSTACK_JOBS
                          - GOOGLE_MAPS
                        description: Provider the deleted saved filter belonged to.
                    required:
                      - id
                      - provider
                required:
                  - status
                  - message
                  - data
        '400':
          description: Bad request - invalid saved filter ID or missing/invalid provider
        '404':
          description: Saved filter not found, or found but not created by the caller
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````