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

# Delete Prompt Partial

> Delete a prompt partial



## OpenAPI

````yaml /public-apis/openapi/prompt-partials.json delete /v1/prompt-partials
openapi: 3.0.0
info:
  version: 1.0.0
  contact:
    name: Maxim Engineering
    email: eng@getmaxim.ai
  title: Maxim SDK API - prompt-partials
  description: API documentation for Maxim SDK prompt-partials endpoints
servers:
  - url: https://api.getmaxim.ai
security: []
paths:
  /v1/prompt-partials:
    delete:
      tags:
        - Prompt Partial
      summary: Delete Prompt Partial
      description: Delete a prompt partial
      parameters:
        - schema:
            type: string
            description: Unique identifier for the workspace
          required: true
          name: workspaceId
          in: query
        - schema:
            type: string
            description: Unique identifier for the prompt partial
          required: true
          name: id
          in: query
      responses:
        '204':
          description: Prompt partial deleted successfully
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized
        '404':
          description: Prompt partial not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-maxim-api-key
      description: API key for authentication

````