/
/MindsDB API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h 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.

This endpoint creates a view which is a result-set of the SELECT statement.

Creates a view from a SELECT statement.

post/api/projects/{projectName}/views

Path parameters

projectNamestring required

The name of the project

Request body

Response

View created

namestring
querystring

SELECT query used to create the view

Changes