Skip to main content
POST
/
raw
/
dbs
JavaScript SDK
const databases = await client.raw.createDatabases([{ name: 'My company' }]);
{
  "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.

Body

application/json

List of names of databases to be created.

items
object[]

Response

201 - application/json

The created databases.

items
object[]
Last modified on April 23, 2026