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!
Retrieve all tables in a workspace
Previous
Delete multiple records by their IDs in a single operation
Next
Create a new database table with optional schema definition