create_product
Generate products in Freshservice by inputting essential details such as name and asset type, streamlining asset management and inventory tracking.
Instructions
Create a product in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_type_id | Yes | ||
depreciation_type_id | No | ||
description | No | ||
description_text | No | ||
manufacturer | No | ||
mode_of_procurement | No | ||
name | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"asset_type_id": {
"title": "Asset Type Id",
"type": "integer"
},
"depreciation_type_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Depreciation Type Id"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"description_text": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description Text"
},
"manufacturer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Manufacturer"
},
"mode_of_procurement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Mode Of Procurement"
},
"name": {
"title": "Name",
"type": "string"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"required": [
"name",
"asset_type_id"
],
"title": "create_productArguments",
"type": "object"
}