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

# 의뢰 삭제

> 의뢰를 삭제합니다. **Soft delete** (Inquiry는 `SoftDeleteOrderedBaseModel`) — DB에서는 `is_deleted=True`로 마킹되며 목록 조회에서 자동 제외됩니다.

삭제된 의뢰의 첨부 파일, 텍스트 히스토리, 상태/폴더 이력은 별도 정리되지 않습니다 (참조 무결성 위해 보존).



## OpenAPI

````yaml DELETE /v1/inquiry/{inquiry_id}
openapi: 3.1.0
info:
  title: pluuug openapi
  version: 1.0.0
  description: >-
    플러그에서 제공하는 REST API의 상세 내용을 확인하고 직접 테스트할 수 있는 인터페이스입니다.<br>이 문서를 통해 API의
    엔드포인트, 요청 및 응답 형식 등을 확인할 수 있습니다.
servers:
  - url: https://openapi.pluuug.com
security: []
paths:
  /v1/inquiry/{inquiry_id}:
    delete:
      tags:
        - inquiry
      summary: 의뢰 삭제
      description: >-
        의뢰를 삭제합니다. **Soft delete** (Inquiry는 `SoftDeleteOrderedBaseModel`) —
        DB에서는 `is_deleted=True`로 마킹되며 목록 조회에서 자동 제외됩니다.


        삭제된 의뢰의 첨부 파일, 텍스트 히스토리, 상태/폴더 이력은 별도 정리되지 않습니다 (참조 무결성 위해 보존).
      operationId: inquiry_destroy
      parameters:
        - in: path
          name: inquiry_id
          schema:
            type: integer
          required: true
      responses:
        '204':
          description: No response body
      security:
        - ApiKeyAuth: []
          Signature: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
    Signature:
      type: apiKey
      in: header
      name: X-Signature
      description: |-
        HMAC-SHA256 방식으로 body를 secret key로 해싱하여 생성한 서명을 넣어야 합니다.
        서버는 X-API-Key와 대응되는 secret key로 서명을 검증합니다.

````