update_product
Modify product details in Freshservice, including name, asset type, manufacturer, status, procurement mode, and depreciation type, ensuring accurate and up-to-date product records.
Instructions
Update a product in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_type_id | Yes | ||
depreciation_type_id | No | ||
description | No | ||
description_text | No | ||
id | Yes | ||
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"
},
"id": {
"title": "Id",
"type": "integer"
},
"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": [
"id",
"name",
"asset_type_id"
],
"title": "update_productArguments",
"type": "object"
}