Get total values for fixed assets

GET /api-v1/fixed-assets/total

Headers

  • TARGET-ORGANIZATION-ID integer(int32)

    ID of organization, for which the operation must be performed

  • WEAL-TOKEN string Required

    API token (can be retrieved from account settings)

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • actualValue number
    • amortization number
    • amortizationType string

      Values are LINEAR_DEPRECIATION_DIRECT, NON_LINEAR_DEPRECIATION_DIRECT, LINEAR_DEPRECIATION_INDIRECT, or NON_LINEAR_DEPRECIATION_INDIRECT.

    • chartOfAccountId integer
    • departmentId integer
    • id integer
    • initialValue number
    • name string
    • officeId integer
    • organizationId integer
    • period string
    • periodFrom string(date-time)
    • periodTo string(date-time)
    • soldOrDeleted boolean
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/fixed-assets/total
curl \
 --request GET 'https://wyzio.app/api-v1/fixed-assets/total' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "actualValue": 42.0,
  "amortization": 42.0,
  "amortizationType": "LINEAR_DEPRECIATION_DIRECT",
  "chartOfAccountId": 42,
  "departmentId": 42,
  "id": 42,
  "initialValue": 42.0,
  "name": "string",
  "officeId": 42,
  "organizationId": 42,
  "period": "string",
  "periodFrom": "2025-05-04T09:42:00Z",
  "periodTo": "2025-05-04T09:42:00Z",
  "soldOrDeleted": true
}