v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-19273210655.1 KB
Databases

Create database schema

Add a new database schema to the server.

Processing mode: <small><code>async</code></small>

post/orgs/{organization}/servers/{server}/database/schemas

Path parameters

organizationstring required

The organization slug

serverinteger required

The server ID

Request body

namestring required

The name of the database to create.

userstring nullable

The name of the database user to create. Only needed if a new user should be created alongside the database.

passwordstring nullable

The password for the database user. Only used if the user is provided.

Example request

{
  "name": "forge",
  "user": "james",
  "password": "password"
}

Response

DatabaseResource