/
/MindsDB API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 31m ago · Updated 1mo ago
  • getReturns a list of database names.
  • postCreates a new database connection.
  • getGets info about existing database.
  • putUpdates an existing database connection.
  • deleteDeletes an existing database.
  • getReturns a list of projects.
  • getGet a project by name.
  • getReturns a list of models.
  • postThis endpoint trains a new ML Model.
  • getGets info about specific model.
  • deleteDeletes an existing model.
  • postThis endpoint fetches predictions from the model.
  • getDescribe a model
  • getList all views in a project
  • postThis endpoint creates a view which is a result-set of the SELECT statement.
  • getSELECT from VIEW
  • putUpdates an existing view.
  • deleteDeletes an existing view.
  • getReturns a list of tables in a database.
  • postThis endpoint creates a new table with the predictions result-set.
  • getSELECT from Table
  • deleteDeletes an existing table.

Updates an existing view.

Updates an existing view, or creates a new view if one doesn't exist.

put/api/projects/{projectName}/views/{viewName}

Path parameters

projectNamestring required

The name of the project

viewNamestring required

The name of the view

Request body

Response

View was successfully updated

namestring
querystring

SELECT query used to create the view

Changes