Retrieve data from a specified Nocodb table.
const records = await getRecords("Shinobi");
Create a new record in a specified Nocodb table.
const response = await postRecords("Shinobi", {
Title: "sasuke"
}
)
Update an existing record in a specified Nocodb table.
const response = await updateRecords("Shinobi", {
Title: "naruto",
id: 1
}
)
Delete a record from a specified Nocodb table.
const response = await deleteRecords("Shinobi", {
id: 1
}
)
Retrieve the names of all tables in the Nocodb database.
const tableNames = await getTableNames();
Add a new column to a specified Nocodb table.
const response = await addColumn("Shinobi", {
name: "Age",
type: "Number"
}
)
Retrieve metadata for a specified Nocodb table.
const metadata = await getTableMetadata("Shinobi");
Delete a column from a specified Nocodb table. Column input is columnId
const response = await deleteColumn("c7uo2ruwc053a3a")