Create a new database table with optional schema definition
This endpoint can create a complete table in a single API request, as long as all values below are fully fleshed out. If you want to create the table in multiple steps, then just fill out the name field as shown in the example.
POST
Create a new database table with optional schema definition
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Body
The body is of type string.
Example:
"table book {\n schema {\n int id\n text title\n text description\n }\n index = [\n {type: \"primary\", field: [{name: \"id\"}]}\n ]\n}\n"
Response
Success!
Related topics
Create a new database table with optional schema definitionReplace the entire schema definition for a database tableRetrieve the complete schema definition for a database tableCreate a new database table with optional schema definition