get_block_document
Retrieve detailed information about a specific Prefect block document using its unique identifier to access configuration and settings for workflow automation components.
Instructions
Get a block document by ID.
Args: block_document_id: The block document UUID
Returns: Block document details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_document_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_document_id": {
"title": "Block Document Id",
"type": "string"
}
},
"required": [
"block_document_id"
],
"type": "object"
}