Create, retrieve, update, and delete connector workspaces for an organization.
Returns all connector workspaces.
organization_id string required
The unique identifier of the organization (format: org_*).
Retrieve a single workspace by ID.
organization_id string required
The unique identifier of the organization.
workspace_id string required
The connector workspace ID.
Create a new connector workspace.
name string required
Human-readable workspace name.
Update workspace properties.
name string optional
Updated workspace name.
Permanently delete a workspace. Returns 204 No Content on success.
Set OAuth credentials on a workspace for use by sources that require OAuth.
actor_type string required
The actor type (e.g., workspace).
name string required
Credential name.
configuration object required
OAuth configuration blob containing client_id, client_secret, etc.
A workspace object containing workspace_id, name, and data_residency.
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/workspaces" \
-H "Authorization: Bearer $ACCESS_TOKEN"