Depreciation schedules

Depreciation schedule tracks the loss in value of an asset over the period of its useful life using a specified depreciation rule.

List depreciation schedules

get/objects/fixed-assets/depreciation-schedule

Returns a collection with a key, ID, and link for each depreciation schedule. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "state": "inProgress",
      • "key": "26",
      • "href": "/objects/fixed-assets/depreciation-schedule/26"
      },
    • {
      • "state": "inProgress",
      • "key": "27",
      • "href": "/objects/fixed-assets/depreciation-schedule/27"
      }
    ],
  • "ia::meta": {
    • "totalCount": 2,
    • "totalSuccess": 2,
    • "totalError": 0
    }
}

Get a depreciation schedule

get/objects/fixed-assets/depreciation-schedule/{key}

Returns detailed information for a specified depreciation schedule.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the depreciation schedule.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "disposedJournalEntry": {
      • "txnNumber": 3,
      • "id": "13",
      • "key": "13"
      },
    • "asset": {
      • "assetCost": "200",
      • "name": "Asset Name _~!@#$%^*()_+=-`1682323123",
      • "salvageValue": "10",
      • "id": "ADJDEC1277",
      • "key": "16"
      },
    • "assetDepreciationRule": {
      • "useSalvageValue": true,
      • "id": "23",
      • "key": "23"
      },
    • "depreciationScheduleEntries": [
      • {
        },
      • {
        },
      • {
        },
      • {
        }
      ],
    • "audit": {
      • "createdBy": "1",
      • "createdDateTime": "2025-01-21T05:27:36Z",
      • "modifiedBy": "1",
      • "modifiedDateTime": "2025-01-21T05:27:53Z",
      • "createdByUser": {
        },
      • "modifiedByUser": {
        }
      },
    • "gainLossAmount": "-188",
    • "depreciableCost": "190",
    • "historicalAccumulatedDepreciationAmount": "0",
    • "id": "14",
    • "state": "canceled",
    • "key": "14",
    • "totalAccumulatedDepreciationAmount": "0",
    • "remainingDepreciationAmount": "0"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}