accounting_insertFixedAsset

WRITE

Insert fixed asset.

Parameters

fixedAssetClassIdstringrequired
namestringrequired
depreciationMethodstringrequired
usefulLifeMonthsnumberrequired
residualValuePercentnumberrequired
fixedAssetIdstringoptional
descriptionstringoptional
serialNumberstringoptional
assetLifetimeUsagenumbernulloptional
locationIdstringoptional
statusstringoptional
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_insertFixedAsset",
  "arguments": {
    "fixedAssetClassId": "string",
    "name": "string",
    "depreciationMethod": "string",
    "usefulLifeMonths": 0,
    "residualValuePercent": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "fixedAssetId": {
      "type": "string"
    },
    "fixedAssetClassId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "serialNumber": {
      "type": "string"
    },
    "depreciationMethod": {
      "type": "string"
    },
    "usefulLifeMonths": {
      "type": "number"
    },
    "residualValuePercent": {
      "type": "number"
    },
    "assetLifetimeUsage": {
      "type": [
        "number",
        "null"
      ]
    },
    "locationId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "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": [
    "fixedAssetClassId",
    "name",
    "depreciationMethod",
    "usefulLifeMonths",
    "residualValuePercent"
  ]
}