airbyte_get_workspace
Get full details of a single workspace by UUID, including name and data residency region.
Instructions
Get full details of a single Airbyte workspace by its UUID.
Returns the workspace name, data residency region, and other metadata. Use when you already know the workspace ID and need its properties.
When to Use: - Look up a specific workspace's name or data residency. - Confirm a workspace ID is valid before passing it to other tools.
When NOT to Use: - If you need to browse or search workspaces, use airbyte_list_workspaces instead.
Returns: Workspace details including: name, workspaceId, dataResidency.
Markdown format renders a heading with bullet-point fields.
JSON format returns the full API response object.Examples: Get workspace by ID: params = { "workspace_id": "a1b2c3d4-..." } Get raw JSON: params = { "workspace_id": "a1b2c3d4-...", "response_format": "json" }
Error Handling: Returns a 404 message if the workspace ID does not exist. Returns a 403 message if credentials lack access to that workspace.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |