get_variable
Retrieve specific variable details from Prefect's workflow automation platform by providing the variable name, enabling access to stored workflow configuration data.
Instructions
Get a variable by name.
Args: name: The variable name
Returns: Variable details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}