Skip to main content
POST
/
raw
/
dbs
/
{dbName}
/
tables
/
{tableName}
/
rows
JavaScript SDK
await client.raw.insertRows('My company', 'Customers', [{ key: 'customer1', columns: { 'First name': 'Steve', 'Last name': 'Jobs' } }]);
{}

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.

Required string length: 1 - 32
tableName
string
required

Name of the table.

Required string length: 1 - 64

Query Parameters

ensureParent
boolean
default:false

Create database/table if it doesn't exist already

Body

List of rows to create.

items
object[]

Response

Empty response.

The response is of type object.

Last modified on April 23, 2026