Endpoint
Authentication
Requires a Personal API Access Token.Header
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| type | string | Yes | Connection type. Valid values: email, kafka, elasticsearch, rabbitMq, ftp, graylog, syslog, webhook, logback, activeMq, snmp, linux-script, database, ldap |
Response
Success Response (200 OK)
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates if the request was successful |
| resultList | array | List of connection objects |
| resultCount | integer | Total number of connections |
Connection Object Fields (Common)
| Field | Type | Description |
|---|---|---|
| type | string | Connection type discriminator field. Identifies the connection type in API responses. |
| name | string | Connection name |
| description | string | Connection description |
| deployToWorker | boolean | Whether to deploy to worker |
| enabled | boolean | Whether connection is enabled |
null in list operations.
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Examples
List Connections by Type (Database)
List Connections by Type (Email)
List Connections by Type (Kafka)
Full JSON Body Example
This endpoint does not require a request body.Permissions
- User must have any permission in the project (read access)
Notes and Warnings
- Secret Fields: Secret fields (password, apiKey, etc.) are masked and returned as
nullin list operations - Get Single Connection: Use Get Connection to retrieve full connection details including secrets
- Connection Types: Each connection type has different fields. See individual connection type documentation for details
- Type Parameter Required: The
typequery parameter is required. Since connections are stored in separate collections by type, you must specify the connection type to query - Valid Type Values:
email,kafka,elasticsearch,rabbitMq,ftp,graylog,syslog,webhook,logback,activeMq,snmp,linux-script,database,ldap
Related Documentation
- Get Connection - Get detailed connection information
- Create Connection - Create a new connection
- Email Connection - Email connection details

