listConnections
Retrieve all active connections within a namespace, optionally filtered by connector type like NOTION or GOOGLE_DRIVE, to manage integrations effectively.
Instructions
Lists all connections for the current namespace, optionally filtered by connector type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connector | No | ||
namespaceId | No | ||
tenantId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connector": {
"enum": [
"NOTION",
"GOOGLE_DRIVE",
"DROPBOX",
"ONEDRIVE",
"BOX",
"SHAREPOINT"
],
"type": "string"
},
"namespaceId": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"type": "object"
}