client.databases.delete_schemas_tables_projects

A method of the Databases endpoint.

delete_schemas_tables_projects(id: int, project_id: int, schema_name: str, table_name: str) Response

Remove a Database Table from a project

API URL: DELETE /databases/{id}/schemas/{schema_name}/tables/{table_name}/projects/{project_id}

import civis
client = civis.APIClient()
response = client.databases.delete_schemas_tables_projects(...)
Parameters:
idint

The ID of the database

project_idint

The ID of the project.

schema_namestr

The name of the schema

table_namestr

The name of the table

Returns:
None

Response code 204: success