Postgres Clusters
Create Postgres Cluster
Create a Managed Postgres cluster for the organization named in the request body. Provisioning is asynchronous, and a name is generated when one is not supplied.
post/postgres
Request body
Example request
{
"disk_size_gb": 10,
"org_slug": "my-org",
"pg_major_version": "17",
"plan": "basic",
"pool_mode": "transaction",
"region": "iad"
}Response
Cluster accepted for provisioning
Example response
{
"data": {
"cpu_kind": "shared",
"cpus": 2,
"disk_size_gb": 10,
"memory_mb": 1024,
"pg_major_version": "17",
"plan": "basic",
"region": "iad",
"replicas": 1,
"status": "ready"
}
}