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

# Delete Parametric Table

> Deletes a Parametric Table identified by its target schema and table name. The original source table is not affected.

<span style={{display: "flex", gap: "10px", flexDirection: "row", alignItems: "center"}}>
  <img src="https://cdn.peaka.com/badges/partner-api-key-badge.png" />

  <img src="https://cdn.peaka.com/badges/project-api-key-badge.png" />
</span>


## OpenAPI

````yaml delete /data/projects/{projectId}/catalogs/{catalogId}/parametricTables
openapi: 3.0.1
info:
  title: Peaka Gateway API
  description: Peaka Gateway API Documentation
  version: '1.0'
servers:
  - url: https://partner.peaka.studio/api/v1
    description: Default Server URL (US Zone)
  - url: https://partner.eu.peaka.studio/api/v1
    description: EU Zone
security:
  - bearerAuth: []
paths:
  /data/projects/{projectId}/catalogs/{catalogId}/parametricTables:
    delete:
      tags:
        - Data -- Parametric Tables
      summary: Delete Parametric Table
      description: >-
        Deletes a Parametric Table identified by its target schema and table
        name. The original source table is not affected.
      operationId: deleteParametricTable
      parameters:
        - name: projectId
          in: path
          description: ID of the project
          required: true
          schema:
            type: string
          example: mtKDhe1U
        - name: catalogId
          in: path
          description: ID of the catalog
          required: true
          schema:
            type: string
          example: 846085284821991600
        - name: toSchema
          in: query
          description: Target schema of the parametric table
          required: true
          schema:
            type: string
          example: analytics
        - name: toTable
          in: query
          description: Target table name of the parametric table
          required: true
          schema:
            type: string
          example: param_products
      responses:
        '204':
          description: Parametric table deleted successfully
        '404':
          description: Parametric table not found
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Use the Authorization header with the value 'Bearer <apiKey>' to
        authenticate. Partner API Keys have full access; Project API Keys are
        limited to their project scope. Learn more:
        https://docs.peaka.com/api-reference/authentication
      scheme: bearer
      bearerFormat: Api Key

````