databaseConnections
List all Database Connections
Get a list of all Database Connections.
get/lib/database-connections
Query parameters
databaseType'mysql' | 'oracle' | 'postgres' | 'sqlserver'
Filter results by database engine type. Use this parameter to return only Database Connections for the specified engine.
limitinteger
Maximum number of Database Connections to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches.
offsetinteger
Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches.
Response
Database Connections returned in a response envelope with <code>count</code> and <code>items</code>.
Example response
{
"count": 1,
"items": [
{
"connectionString": "mysql://yourUsername:yourPassword@mysql.example.com:3306/production?ssl=true",
"connectionTimeout": 10000,
"credsSecrets": "oracle-production-credentials",
"description": "Production MySQL database for customer data",
"id": "mysql-prod-db",
"password": "yourPassword",
"requestTimeout": 30000,
"tags": "production,mysql,customer-data",
"textSecret": "mysql-production-connection",
"user": "yourUsername"
}
]
}