getConnection
Retrieve specific connection details by its ID to manage and interact with SourceSync.ai's knowledge management platform for document handling, content ingestion, and semantic searches.
Instructions
Retrieves details for a specific connection by its ID.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| connectionId | Yes | ||
| namespaceId | No | ||
| tenantId | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "connectionId": {
      "type": "string"
    },
    "namespaceId": {
      "type": "string"
    },
    "tenantId": {
      "type": "string"
    }
  },
  "required": [
    "connectionId"
  ],
  "type": "object"
}