accounting_updateFixedAsset
WRITEUpdate fixed asset.
Parameters
idstringrequiredfixedAssetClassIdstringoptionalnamestringoptionaldescriptionstringnulloptionalserialNumberstringnulloptionaldepreciationMethodstringoptionalusefulLifeMonthsnumberoptionalresidualValuePercentnumberoptionalassetLifetimeUsagenumbernulloptionallocationIdstringnulloptionaltaxDepreciationMethodstringnulloptionaltaxUsefulLifeMonthsnumbernulloptionaltaxResidualValuePercentnumbernulloptionalmacrsPropertyClassstringnulloptionalmacrsConventionstringnulloptionalbonusDepreciationPercentnumbernulloptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_updateFixedAsset",
"arguments": {
"id": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"fixedAssetClassId": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"serialNumber": {
"type": [
"string",
"null"
]
},
"depreciationMethod": {
"type": "string"
},
"usefulLifeMonths": {
"type": "number"
},
"residualValuePercent": {
"type": "number"
},
"assetLifetimeUsage": {
"type": [
"number",
"null"
]
},
"locationId": {
"type": [
"string",
"null"
]
},
"taxDepreciationMethod": {
"type": [
"string",
"null"
]
},
"taxUsefulLifeMonths": {
"type": [
"number",
"null"
]
},
"taxResidualValuePercent": {
"type": [
"number",
"null"
]
},
"macrsPropertyClass": {
"type": [
"string",
"null"
]
},
"macrsConvention": {
"type": [
"string",
"null"
]
},
"bonusDepreciationPercent": {
"type": [
"number",
"null"
]
}
},
"required": [
"id"
]
}