arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Search Connection Strings

Connection strings API reference guide

This page describes the connectionStrings endpoint.

circle-info

Additional fields may be included in some responses you receive; however, these attributes are for internal purposes and are therefore undocumented.

hashtag
Search connection strings

GET /connectionStrings

Search across all connection strings in the handler table.

hashtag
Query parameters

Attribute
Description
Required

hashtag
Response parameters

Attribute
Description

hashtag
Request example

The following request searches across all connection strings in the handler table.

hashtag
Response example

searchText

string A string used to filter returned connection strings. The query is executed with a wildcard prefix and suffix.

No

values

array Details regarding connection strings, including name and count.

curl \
    --request GET \
    --header "Content-Type: application/json" \
    --header "Authorization: Bearer dea464c07bd07300095caa8" \
    https://your-immuta-url.com/connectionStrings
{
  "values": [
    {
      "name": "[email protected]:???/TEST",
      "count": 5
    }
  ]
}