Retrieve the properties and relationships of an item object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
GET businesscentralPrefix/companies({id})/items({id})
Request headers (v1.0)
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Request body (v1.0)
Do not supply a request body for this method.
Response (v1.0)
If successful, this method returns a 200 OK
response code and an items object in the response body.
Example (v1.0)
Request
Here is an example of the request.
GET https://graph.microsoft.com/v1.0businesscentralPrefix/companies({id})/items({id})
Response
Here is an example of the response.
Note
The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
{
"id": "id-value",
"number": "1896-S",
"displayName": "ATHENS Desk",
"type": "Inventory",
"blocked": false,
"baseUnitOfMeasureId": "id-value",
"baseUnitOfMeasure": {
"unitCode": "PCS",
"unitName": "Piece",
"symbol": "",
"unitConversion": null
},
"gtin": "",
"itemCategory": {
"categoryId": "TABLE",
"description": "Assorted Tables"
},
"inventory": 0,
"unitPrice": 1000.8,
"priceIncludesTax": false,
"unitCost": 780.7,
"taxGroupId": "id-value",
"taxGroupCode": "FURNITURE",
"lastModifiedDateTime": "2017-03-07T00:35:30.073Z"
}