List Connections
[host-url]/dt-rest/v2/connections
fields: specifies the fields to include in the response (comma-separated)name: filters connections by nameconnectionType: filters connections by type of technology
The following examples demonstrate the supported query patterns:
- Retrieve all connections (no filters):
Retrieves all available connections without any name or connection type filtering. All default fields for these connections will be included in the response.
/connections - Retrieve all connections with specific fields:
Retrieves all connections, but the response for each connection will only include the fields specified in the
fieldsparameter./connections?fields=name,connectionId,... - Filter by name only:
Retrieves all connections that match the specified
name. All default fields for these connections will be included in the response./connections?name=your_connection_name - Filter by name and select specific fields:
Retrieves connections that match the given
name, and the response for these connections will only include the fields specified in thefieldsparameter./connections?name=your_connection_name&fields=name,connectionId,... - Filter by connection type only:
Retrieves all connections that belong to the specified
connectionType. All default fields for these connections will be included in the response./connections?connectionType=your_connection_type - Filter by connection type and select specific fields:
Retrieves connections that belong to the specified
connectionType, and the response for these connections will only include the fields specified in thefieldsparameter./connections?connectionType=your_connection_type&fields=name,connectionId,...
Request
-
connectionType: string
filters connections by technology type
-
fields: string
comma-separated list of fields to include in the response
-
name: string
filters connections by name
There's no request body for this operation.
Back to TopResponse
- application/json
200 Response
array-
Array of:
object ConnectionBaseDTO
Represents a connection.