Postgres Clusters
List Users
List all Postgres users within a specific cluster.
List all Postgres users within a specific cluster.
Authorization
bearerAuth AuthorizationBearer <token>
A Fly.io access token. Create one with fly tokens create.
In: header
Path Parameters
postgres_cluster_id*string
Managed Postgres Cluster ID
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/postgres/string/users"{ "data": [ { "role": "schema_admin", "username": "string" } ]}{ "error": "string"}Restore Backup or Point in Time to New Cluster POST
Restore a backup, or a point in time within the cluster's PITR recovery window, into a new Managed Postgres cluster. The source cluster is left unchanged, and a new cluster is provisioned asynchronously.
Create User POST
Create a Postgres user within a specific cluster. Fetch the generated password from the credentials endpoint.