GET
/
cloud
/
v1
/
dbaas
/
postgres
/
clusters
/
{project_id}
/
{region_id}
/
{cluster_name}
/
users
/
{username}
/
credentials
curl --request GET \
  --url https://api.gcore.com/cloud/v1/dbaas/postgres/clusters/{project_id}/{region_id}/{cluster_name}/users/{username}/credentials \
  --header 'APIKey: <api-key>'
{
  "password": "<PASSWORD>",
  "username": "myuser"
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project identifier

region_id
integer
required

Region identifier

cluster_name
string
required

DBAAS PostgreSQL cluster name

username
string
required

Region identifier

Response

200
application/json

Username/password

The response is of type object.