Skip to main content
POST
Create an empty table with a column schema

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Body

application/json
name
string
required

Table name shown to users and referenced by agents.

Example:

"Product Catalog"

columns
object[]
required

Column schema. Each column needs a name and a data_type.

Minimum array length: 1
description
string | null

Optional description of what this table stores and how the agent should use it.

Example:

"Catalog of products the agent can answer questions about."

Response

Table created successfully

success
boolean
Example:

true

message
string
Example:

"Table created successfully"

data
object