get_variables
Retrieve Prefect workflow variables with optional filtering by name, limit, or offset to manage configuration data in your automation platform.
Instructions
Get a list of variables with optional filtering.
Args: limit: Maximum number of variables to return offset: Number of variables to skip name: Filter by name pattern
Returns: A list of variables with their details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
name | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
}
},
"type": "object"
}