Connection Strings API Reference Guide
This page describes the connectionStrings endpoint.
Note
Additional fields may be included in some responses you receive; however, these attributes are for internal purposes and are therefore undocumented.
Search connection strings
Endpoint
| Method | Path | Purpose | 
|---|---|---|
| GET | /connectionStrings | Search across all connection strings in the handler table. | 
Query Parameters
| Attribute | Description | Required | 
|---|---|---|
| searchText | stringA string used to filter returned connection strings. The query is executed with a wildcard prefix and suffix. | No | 
Response Parameters
| Attribute | Description | 
|---|---|
| values | arrayDetails regarding connection strings, includingnameandcount. | 
Request example
The following request searches across all connection strings in the handler table.
curl \
    --request GET \
    --header "Content-Type: application/json" \
    --header "Authorization: Bearer dea464c07bd07300095caa8" \
    https://your-immuta-url.com/connectionStrings
Response example
{
  "values": [
    {
      "name": "TEST@immuta.us-east-1.testcomputing.com:???/TEST",
      "count": 5
    }
  ]
}