get_content_categories
Returns all content categories available to your team. Categories organize blueprints and deliverables by type (e.g. GTM Messaging, Website & Blog, Sales & Partner Materials).
Input Schema
{
"type": "object",
"properties": {}
}Output Schema
{
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "integer",
"description": "Category ID. Pass to create_blueprint or create_blueprint_draft as category_id."
},
"name": {
"type": "string",
"description": "Category name (e.g. GTM Messaging)"
}
}
}
}Instructions
Returns all content categories available to your team. Categories organize blueprints and deliverables by type (e.g. GTM Messaging, Website & Blog, Sales & Partner Materials).
Use the id as the category_id when creating blueprints (create_blueprint) or deliverables (create_deliverable_from_scratch or create_deliverable_from_blueprint).