Postgres Clusters

List Extensions

List all extensions available within a specific database, indicating which are installed.

get/v1/postgres/{postgres_cluster_id}/databases/{database_name}/extensions

Path parameters

postgres_cluster_idstring required

Managed Postgres Cluster ID

database_namestring required

Database Name

Response

OK

Example response

{
  "data": [
    {
      "installed": {
        "schema": "public",
        "version": "1.0"
      },
      "name": "citext"
    }
  ]
}

Changes

Changed in 1 of the 8 revisions of this API.1