Represents a fixed asset in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description |
|---|---|---|
| GET fixedAsset | fixedAsset | Gets a fixed asset object. |
| DELETE fixedAsset | none | Deletes a fixed asset object. |
| POST fixedAsset | fixedAsset | Creates a fixed asset object. |
| PATCH fixedAsset | fixedAsset | Updates a fixed asset object. |
Navigation
| Navigation | Return Type | Description |
|---|---|---|
| fixedAssetLocation | fixedAssetLocation | Gets the fixedassetlocation of the fixedAsset. |
| employee | employee | Gets the employee of the fixedAsset. |
Properties
| Property | Type | Description |
|---|---|---|
| id | GUID | The unique ID of the fixed asset. Non-editable. |
| number | string | Specifies the number of the fixed asset. |
| displayName | string | Specifies the fixed asset's name. This name will appear on all sales documents for the fixed asset. |
| fixedAssetLocationCode | string | |
| fixedAssetLocationId | GUID | |
| classCode | string | |
| subclassCode | string | |
| blocked | boolean | Specifies that entries can't be posted to the fixed asset. True indicates account is blocked and posting is not allowed. |
| serialNumber | string | |
| employeeNumber | string | The employee's number. |
| employeeId | GUID | The unique ID of employee. |
| underMaintenance | boolean | |
| lastModifiedDateTime | datetime | The last datetime the fixed asset was modified. Read-Only. |
JSON representation
Here's a JSON representation of the fixedAsset resource.
{
"id": "GUID",
"number": "string",
"displayName": "string",
"fixedAssetLocationCode": "string",
"fixedAssetLocationId": "GUID",
"classCode": "string",
"subclassCode": "string",
"blocked": "boolean",
"serialNumber": "string",
"employeeNumber": "string",
"employeeId": "GUID",
"underMaintenance": "boolean",
"lastModifiedDateTime": "datetime"
}
Related information
GET fixedAsset
DELETE fixedAsset
POST fixedAsset
PATCH fixedAsset