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

# Archive a product



## OpenAPI

````yaml https://app.paperlink.online/api/v1/openapi.json delete /products/{id}
openapi: 3.1.0
info:
  title: PaperLink API
  version: 1.0.0
  description: PaperLink Public REST API for managing products and documents.
  contact:
    name: PaperLink Support
    url: https://paperlink.online
servers:
  - url: https://app.paperlink.online/api/v1
    description: Production
security:
  - BearerAuth: []
paths:
  /products/{id}:
    delete:
      tags:
        - Products
      summary: Archive a product
      operationId: archiveProduct
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: Product archived
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Product not found
components:
  responses:
    Unauthorized:
      description: Authentication failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          required:
            - type
            - code
            - message
            - request_id
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            details: {}
            request_id:
              type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key from Settings > Integrations > API Keys

````