Create fixedAssets
Creates a fixed asset in Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
POST businesscentralPrefix/companies({id})/fixedAssets({id})
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Content-Type | application/json |
If-Match | Required. When this request header is included and the eTag provided does not match the current tag on the fixedAsset, the fixedAsset will not be updated. |
Request body
In the request body, supply a JSON representation of a fixedAsset object.
Response
If successful, this method returns 201 Created
response code and a fixedAsset object in the response body.
Example
Request
Here is an example of the request.
POST https://{businesscentralPrefix}/api/v2.0/companies({id})/fixedAssets({id})
Content-type: application/json
{
"id" : "",
"number" : "",
"displayName" : "",
"fixedAssetLocationCode" : "",
"fixedAssetLocationId" : "",
"classCode" : "",
"subclassCode" : "",
"blocked" : "",
"serialNumber" : "",
"employeeNumber" : "",
"employeeId" : "",
"underMaintenance" : "",
"lastModifiedDateTime" : ""
}
Response
Here is an example of the response.
HTTP/1.1 201 Created
Content-type: application/json
{
"id" : "",
"number" : "",
"displayName" : "",
"fixedAssetLocationCode" : "",
"fixedAssetLocationId" : "",
"classCode" : "",
"subclassCode" : "",
"blocked" : "",
"serialNumber" : "",
"employeeNumber" : "",
"employeeId" : "",
"underMaintenance" : "",
"lastModifiedDateTime" : ""
}
Related information
Tips for working with the APIs
fixedAsset
GET fixedAsset
DELETE fixedAsset
PATCH fixedAsset