Depreciation methods determine how an asset's depreciation expense is computed into periods over its useful life.
The following depreciation methods are supported: Straight line, Daily, 150% declining balance, 200% declining balance, Custom declining balance with true-up, and Custom declining balance without true-up.
Returns a collection with a key, ID, and link for each depreciation method. 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.
OK
Bad Request
{- "ia::result": [
- {
- "id": "CDB",
- "key": "-6",
- "href": "/objects/fixed-assets/depreciation-method/-6"
}, - {
- "id": "CDBT",
- "key": "-5",
- "href": "/objects/fixed-assets/depreciation-method/-5"
}, - {
- "id": "DR",
- "key": "-4",
- "href": "/objects/fixed-assets/depreciation-method/-4"
}, - {
- "id": "150DB",
- "key": "-3",
- "href": "/objects/fixed-assets/depreciation-method/-3"
}, - {
- "id": "200DB",
- "key": "-2",
- "href": "/objects/fixed-assets/depreciation-method/-2"
}, - {
- "id": "SL",
- "key": "-1",
- "href": "/objects/fixed-assets/depreciation-method/-1"
}
], - "ia::meta": {
- "totalCount": 6,
- "totalSuccess": 6,
- "totalError": 0
}
}
Returns detailed information for a specified depreciation method.
key required | string System-assigned key for the depreciation method. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "name": "Straight line",
- "id": "SL",
- "key": "-1"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}