get_article
Retrieve a specific knowledge article by its ID using the ServiceNow API to access and manage article data efficiently.
Instructions
Get a specific knowledge article by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetArticleParams": {
"description": "Parameters for getting a knowledge article.",
"properties": {
"article_id": {
"description": "ID of the article to get",
"title": "Article Id",
"type": "string"
}
},
"required": [
"article_id"
],
"title": "GetArticleParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetArticleParams"
}
},
"required": [
"params"
],
"title": "get_articleArguments",
"type": "object"
}