get_workspace
Retrieve workspace details from Prefect's workflow automation platform by providing the workspace UUID to access specific workflow environments and configurations.
Instructions
Get a workspace by ID.
Args: workspace_id: The workspace UUID
Returns: Workspace details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workspace_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"workspace_id": {
"title": "Workspace Id",
"type": "string"
}
},
"required": [
"workspace_id"
],
"type": "object"
}