Kostenstellen

Kostenstellen abrufen

Version 1.0


GET/openwowi/v1.0/FixedAssets/AssetCostCenters
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
DiamantAssetIdinteger (int32)
DiamantAssetAssetNumbernullable string
Keynullable string
CostCenternullable string
CostObjectnullable string
Dimension3nullable string
Dimension5nullable string
Dimension6nullable string
Proportionnullable integer (int32)
NormalDepreciationnullable number (decimal)
SpecialDepreciationnullable number (decimal)
PartValueDepreciationnullable number (decimal)
FromPeriodnullable string
Request
const response = await fetch('/openwowi/v1.0/FixedAssets/AssetCostCenters', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "DiamantAssetId": 1,
    "DiamantAssetAssetNumber": "text",
    "Key": "text",
    "CostCenter": "text",
    "CostObject": "text",
    "Dimension3": "text",
    "Dimension5": "text",
    "Dimension6": "text",
    "Proportion": 1,
    "NormalDepreciation": 1,
    "SpecialDepreciation": 1,
    "PartValueDepreciation": 1,
    "FromPeriod": "text"
  }
]

Last updated