get_workspace_by_handle
Retrieve workspace details using account and workspace handles to access specific workflow automation environments in Prefect.
Instructions
Get a workspace by its handle.
Args: account_handle: The account handle workspace_handle: The workspace handle
Returns: Workspace details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_handle | Yes | ||
workspace_handle | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_handle": {
"title": "Account Handle",
"type": "string"
},
"workspace_handle": {
"title": "Workspace Handle",
"type": "string"
}
},
"required": [
"account_handle",
"workspace_handle"
],
"type": "object"
}