get_blueprints
Get all blueprints in your team's library, organized as a flat list. Each blueprint includes its content category and a web URL.
Input Schema
{
"type": "object",
"properties": {}
}Output Schema
{
"type": "object",
"properties": {
"blueprints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"web_url": {
"type": "string"
},
"category": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"created_at": {
"type": "integer"
},
"blueprint_uuid": {
"type": "string",
"format": "uuid"
},
"team_visibility": {
"type": "string"
},
"deliverable_count": {
"type": "integer"
},
"input_instructions": {
"type": "string"
},
"exchange_visibility": {
"type": "string"
}
}
}
},
"blueprint_drafts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"canvas_id": {
"type": "string",
"format": "uuid"
},
"created_at": {
"type": "integer"
},
"is_converted": {
"type": "boolean"
}
}
},
"description": "In-progress blueprint drafts not yet finalized"
}
}
}Instructions
Get all blueprints in your team's library, organized as a flat list. Each blueprint includes its content category.
Use the returned blueprint_uuid with create_deliverable_from_blueprint to generate content.