client.databases.get

A method of the Databases endpoint.

get(id: int) Response

Show database information

API URL: GET /databases/{id}

import civis
client = civis.APIClient()
response = client.databases.get(...)
Parameters:
idint

The ID for the database.

Returns:
civis.Response
  • idint

    The ID for the database.

  • namestr

    The name of the database in Platform.

  • adapterstr

    The type of the database.

  • cluster_identifierstr

    The cluster identifier of the database.

  • hoststr

    The host of the database server.

  • portint

    The port of the database.

  • database_namestr

    The internal name of the database.

  • managedbool

    True if the database is Civis-managed. False otherwise.