create_solution_article
Generate and publish solution articles in Freshservice by specifying title, description, folder, and optional attributes like tags, keywords, and review date.
Instructions
Create a new solution article in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_type | No | ||
description | Yes | ||
folder_id | Yes | ||
keywords | No | ||
review_date | No | ||
status | No | ||
tags | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"article_type": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Article Type"
},
"description": {
"title": "Description",
"type": "string"
},
"folder_id": {
"title": "Folder Id",
"type": "integer"
},
"keywords": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Keywords"
},
"review_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Review Date"
},
"status": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Status"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"description",
"folder_id"
],
"title": "create_solution_articleArguments",
"type": "object"
}