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

# Tax ID required for deletion

> This endpoint requires a tax ID in the URL path. Use DELETE /api/v0/taxes/{id} instead.



## OpenAPI

````yaml /swagger.yml delete /api/v0/taxes
openapi: 3.0.0
info:
  title: Devdraft AI Payment & Business Management API
  description: >-

    A comprehensive payment processing and business management API that enables
    seamless integration of cryptocurrency and traditional payment methods.
        
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.devdraft.ai
    description: Production Server
security: []
tags: []
paths:
  /api/v0/taxes:
    delete:
      tags:
        - Taxes
      summary: Tax ID required for deletion
      description: >-
        This endpoint requires a tax ID in the URL path. Use DELETE
        /api/v0/taxes/{id} instead.
      operationId: TaxController_deleteWithoutId
      parameters: []
      responses:
        '400':
          description: Bad Request - Tax ID is required in the URL path
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Tax ID is required in the URL path. Use DELETE
                      /api/v0/taxes/{id} to delete a specific tax.
                  error:
                    type: string
                    example: Bad Request
                  statusCode:
                    type: number
                    example: 400
      security:
        - x-client-secret: []
        - x-client-key: []
components:
  securitySchemes:
    x-client-secret:
      type: apiKey
      in: header
      name: x-client-secret
      description: >-
        Your secret API key. Keep this secure and never expose it in client-side
        code.
    x-client-key:
      type: apiKey
      in: header
      name: x-client-key
      description: Your unique client API key. Obtain this from your Devdraft AI dashboard.

````