get_block_type
Retrieve block type details from Prefect's workflow automation platform by providing the block type slug to access configuration information.
Instructions
Get a block type by slug.
Args: slug: The block type slug
Returns: Block type details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes |
Input Schema (JSON Schema)
{
"properties": {
"slug": {
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}