Tables
Create Table
Create a new table in a workspace. Define the table schema with typed columns, optional constraints (required, unique), and a name.
post/api/v1/tables
Request body
Example request
{
"schema": {
"columns": [
{
"name": "email"
}
]
}
}Response
Table created successfully.
Example response
{
"data": {
"table": {
"id": "tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14",
"name": "contacts",
"description": "Customer contact records",
"schema": {
"columns": [
{
"name": "email"
}
]
}
}
}
}