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

# Delete a table

> Permanently delete a table. Irreversible: cascades all records, fields, and refs. Rejected while Record fields on other tables link to this one, unless `force` is set — those fields are then deleted with it.



## OpenAPI

````yaml https://api.useinvent.com/openapi.json delete /orgs/{org_id}/tables/{table_id}
openapi: 3.1.0
info:
  version: 1.0.0
  title: Invent API
servers:
  - url: https://api.useinvent.com
security:
  - bearerAuth: []
paths:
  /orgs/{org_id}/tables/{table_id}:
    delete:
      tags:
        - Orgs Tables
      summary: Delete a table
      description: >-
        Permanently delete a table. Irreversible: cascades all records, fields,
        and refs. Rejected while Record fields on other tables link to this one,
        unless `force` is set — those fields are then deleted with it.
      parameters:
        - schema:
            type: string
          required: true
          description: Org ID
          name: org_id
          in: path
        - schema:
            type: string
          required: true
          description: Table ID
          name: table_id
          in: path
        - schema:
            type: boolean
            description: >-
              Delete even when Record fields on other tables link to this one.
              Those fields are deleted with it.
          required: false
          description: >-
            Delete even when Record fields on other tables link to this one.
            Those fields are deleted with it.
          name: force
          in: query
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: 'null'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Bearer token authentication using your API key

````