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

# Delete a quiz from user's bookmarks

> Delete a quiz from user's bookmarks



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi delete /api/v1/bookmarks/{id}
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/bookmarks/{id}:
    delete:
      tags:
        - Bookmarks
      summary: Delete a quiz from user's bookmarks
      description: Delete a quiz from user's bookmarks
      operationId: deleteApiV1BookmarksById
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          description: Quiz removed from bookmarks successfully
        '400':
          description: Invalid bookmark ID
        '403':
          description: Not authorized to delete this bookmark

````