publish_article
Publish knowledge articles on ServiceNow by setting workflow states and versions. Streamline content management with direct API integration for efficient article publication.
Instructions
Publish a knowledge article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_id | Yes | ID of the article to publish | |
workflow_state | No | The workflow state to set | published |
workflow_version | No | The workflow version to use |
Input Schema (JSON Schema)
{
"description": "Parameters for publishing a knowledge article.",
"properties": {
"article_id": {
"description": "ID of the article to publish",
"title": "Article Id",
"type": "string"
},
"workflow_state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "published",
"description": "The workflow state to set",
"title": "Workflow State"
},
"workflow_version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The workflow version to use",
"title": "Workflow Version"
}
},
"required": [
"article_id"
],
"title": "PublishArticleParams",
"type": "object"
}