Depreciation methods

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.

List depreciation methods

get/objects/fixed-assets/depreciation-method

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.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}

Get a depreciation method

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

Returns detailed information for a specified depreciation method.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the depreciation method.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "name": "Straight line",
    • "id": "SL",
    • "key": "-1"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}