Depreciation schedule entries

Line items in a depreciation schedule, which denote the amount and posting date of depreciation entries for an asset.

List depreciation schedule entries

get/objects/fixed-assets/depreciation-schedule-entry

Returns a collection with a key, ID, and link for each depreciation schedule entry. 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": "11",
      • "key": "11",
      • "href": "/objects/fixed-assets/depreciation-schedule-entry/11"
      },
    • {
      • "id": "12",
      • "key": "12",
      • "href": "/objects/fixed-assets/depreciation-schedule-entry/12"
      }
    ],
  • "ia::meta": {
    • "totalCount": 2,
    • "totalSuccess": 2,
    • "totalError": 0
    }
}

Get a depreciation schedule entry

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

Returns detailed information for a specified depreciation schedule entry.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the depreciation schedule entry.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "depreciationSchedule": {
      • "id": "389",
      • "key": "389"
      },
    • "audit": {
      • "createdBy": "1",
      • "createdDateTime": "2023-04-24T07:58:45Z",
      • "modifiedBy": "1",
      • "modifiedDateTime": "2023-04-24T07:58:45Z",
      • "createdByUser": {
        },
      • "modifiedByUser": {
        }
      },
    • "depreciationAmount": "960",
    • "period": 1,
    • "id": "5564",
    • "scheduledPostingDate": "2021-12-31",
    • "actualPostingDate": "2022-01-05",
    • "state": "notPosted",
    • "key": "5564"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}