get_draft_list
Retrieve a list of draft articles from the Emlog blog system using specified count, enabling efficient draft management and content planning.
Instructions
Get list of draft articles
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of drafts to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"description": "Number of drafts to retrieve",
"type": "number"
}
},
"type": "object"
}