get_article
Retrieve a specific article by its unique ID within Emlog blog systems, including handling password-protected content.
Instructions
Get a specific article by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the article to retrieve | |
password | No | Password for protected articles |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the article to retrieve",
"type": "number"
},
"password": {
"description": "Password for protected articles",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}