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

# Delete a catalog entry

> Delete a catalog entry, un-cataloging the `(target, medium)`.

Delete a catalog entry, un-cataloging the `(target, medium)`.

<Warning>
  Un-cataloging a `(target, email)` turns email off for any recipient who was relying on the catalog default (they had set no preference of their own).
</Warning>


## OpenAPI

````yaml DELETE /preferences/{preference_id}
openapi: 3.0.3
info:
  title: Bodhveda Notifications API
  version: '1.0'
  description: API for sending notifications to recipients or broadcasting to all.
servers: []
security: []
paths:
  /preferences/{preference_id}:
    delete:
      tags:
        - Project Preferences
      summary: Delete a catalog entry
      description: Delete a catalog entry, un-cataloging the `(target, medium)`.
      operationId: deleteProjectPreference
      parameters:
        - name: preference_id
          in: path
          required: true
          schema:
            type: integer
          description: The catalog entry's ID.
      responses:
        '200':
          description: Catalog entry deleted.
        '404':
          description: No catalog entry with this ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuthWithAPIKeyWithFullAcessScope: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: string
  securitySchemes:
    BearerAuthWithAPIKeyWithFullAcessScope:
      type: http
      scheme: bearer
      bearerFormat: APIKey
      description: >-
        Bearer authentication header of the form `Bearer bv_xxxxxxxxx`, where
        `bv_xxxxxxxxx` is your **API Key** with `Full access` scope.

````