update_article
Modify an existing ServiceNow knowledge article by updating its title, content, description, category, or keywords using the article ID.
Instructions
Update an existing knowledge article
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ID of the article to update | |
| category | No | Updated category for the article | |
| keywords | No | Updated keywords for search | |
| short_description | No | Updated short description | |
| text | No | Updated main body text for the article. Field supports html formatting and wiki markup based on the article_type. HTML is the default. | |
| title | No | Updated title of the article |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"description": "ID of the article to update",
"title": "Article Id",
"type": "string"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated category for the article",
"title": "Category"
},
"keywords": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated keywords for search",
"title": "Keywords"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated short description",
"title": "Short Description"
},
"text": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated main body text for the article. Field supports html formatting and wiki markup based on the article_type. HTML is the default.",
"title": "Text"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Updated title of the article",
"title": "Title"
}
},
"required": [
"article_id"
],
"type": "object"
}