const databases = await client.raw.createDatabases([{ name: 'My company' }]);{
"items": [
{
"name": "<string>"
}
]
}Required capabilities:
rawAcl:WRITE
Create databases in a project. It is possible to post a maximum of 1000 databases per request.
const databases = await client.raw.createDatabases([{ name: 'My company' }]);{
"items": [
{
"name": "<string>"
}
]
}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.
List of names of databases to be created.
Show child attributes
The created databases.
Show child attributes
Was this page helpful?