Skip to main content
POST
/
raw
/
dbs
/
{dbName}
/
tables
JavaScript SDK
const tables = await client.raw.createTables('My company', [{ name: 'Customers' }]);
{
  "items": [
    {
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

dbName
string
required

Name of the database to create tables in.

Query Parameters

ensureParent
boolean
default:false

Create database if it doesn't exist already

Body

application/json

List of tables to create.

items
object[]

Response

The created tables.

items
object[]
Last modified on April 23, 2026