Fly.io
Postgres Clusters

List Backups

View as Markdown

List all backups associated with a specific cluster.

GET
/v1/postgres/{postgres_cluster_id}/backups

List all backups associated with 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/backups"
{  "data": [    {      "finished_at": "string",      "id": "string",      "size_bytes": 0,      "started_at": "string",      "status": "completed",      "type": "full"    }  ]}
{  "error": "string"}