accounting_updateFixedAsset

WRITE

Update fixed asset.

Parameters

idstringrequired
fixedAssetClassIdstringoptional
namestringoptional
descriptionstringnulloptional
serialNumberstringnulloptional
depreciationMethodstringoptional
usefulLifeMonthsnumberoptional
residualValuePercentnumberoptional
assetLifetimeUsagenumbernulloptional
locationIdstringnulloptional
taxDepreciationMethodstringnulloptional
taxUsefulLifeMonthsnumbernulloptional
taxResidualValuePercentnumbernulloptional
macrsPropertyClassstringnulloptional
macrsConventionstringnulloptional
bonusDepreciationPercentnumbernulloptional

Call 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"
  ]
}