GET
/
cloud
/
v1
/
dbaas
/
postgres
/
clusters
/
{project_id}
/
{region_id}
curl --request GET \
  --url https://api.gcore.com/cloud/v1/dbaas/postgres/clusters/{project_id}/{region_id} \
  --header 'APIKey: <api-key>'
{
  "count": 1,
  "results": [
    {
      "cluster_name": "mycluster",
      "created_at": "2023-11-07T05:31:56Z",
      "status": "DELETING",
      "version": "15"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project identifier

region_id
integer
required

Region identifier

Query Parameters

limit
integer

Limit the number of returned tasks. Falls back to default of 10 if not specified.

offset
integer

Offset value is used to exclude the first set of records from the result

Response

200 - application/json

DBAAS PostgreSQL Clusters list

The response is of type object.