Create, retrieve, update, and delete connector connections for an organization.
Returns all connections in the organization's workspace.
organization_id string required
The unique identifier of the organization (format: org_*).
Retrieve a single connection by ID.
connection_id string required
The connection ID.
Create a new connection between a source and destination.
source_id string required
Source to connect from.
destination_id string optional
Destination to connect to. Auto-filled if omitted.
name string optional
Human-readable connection name.
schedule object optional
Sync schedule configuration.
configurations object optional
Stream configurations.
status string optional
Connection status: active or inactive.
Partially update a connection's properties.
name string optional
Updated connection name.
schedule object optional
Updated sync schedule.
configurations object optional
Updated stream configurations.
status string optional
Set to active or inactive.
Permanently delete a connection. Returns 204 No Content on success.
A connection object containing connection_id, name, source_id, destination_id, workspace_id, status, schedule, and configurations.
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/connections" \
-H "Authorization: Bearer $ACCESS_TOKEN"