get_article
Retrieve specific knowledge articles from ServiceNow using their unique ID to access documented solutions and information.
Instructions
Get a specific knowledge article by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ID of the article to get |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"description": "ID of the article to get",
"title": "Article Id",
"type": "string"
}
},
"required": [
"article_id"
],
"type": "object"
}