Skip to main content
POST
/
raw
/
dbs
/
{dbName}
/
tables
/
{tableName}
/
rows
/
delete
JavaScript SDK
await client.raw.deleteRows('My company', 'Customers', [{key: 'customer1'}]);
{}

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 containing the rows.

Required string length: 1 - 32
tableName
string
required

Name of the table containing the rows.

Required string length: 1 - 64

Body

application/json

Keys to the rows to delete.

items
object[]

Response

200 - application/json

Empty response.

The response is of type object.

Last modified on April 23, 2026