Search Connection Strings
Connection strings API reference guide
This page describes the connectionStrings
endpoint.
Search connection strings
GET
/connectionStrings
Search across all connection strings in the handler table.
Query parameters
Attribute
Description
Required
searchText
string
A string used to filter returned connection strings. The query is executed with a wildcard prefix and suffix.
No
Response parameters
Attribute
Description
values
array
Details regarding connection strings, including name
and count
.
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": "[email protected]:???/TEST",
"count": 5
}
]
}
Was this helpful?