get_article
Retrieve specific articles from Document360 knowledge base by providing the article ID to access title, content, tags, and metadata.
Instructions
Get article by ID from Document360
Args: article_id: The Document360 article ID (e.g., 'rtt2a758-82a7-4dd0-a7c7-0a9ad04881d0')
Returns: Article information including title, content, tags, and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"title": "Article Id",
"type": "string"
}
},
"required": [
"article_id"
],
"type": "object"
}