Retrieve an inventory adjustment
Retrieves an inventory adjustment by ID.
IMPORTANT: If you need to fetch multiple specific inventory adjustments by ID, use the list endpoint instead with the ids parameter. It accepts an array of IDs so you can batch the request into a single call, which is significantly faster.
get/quickbooks-desktop/inventory-adjustments/{id}
Path parameters
idstring required
The QuickBooks-assigned unique identifier of the inventory adjustment to retrieve.
Example:123ABC-1234567890
The QuickBooks-assigned unique identifier of the inventory adjustment to retrieve.
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Response
Returns the specified inventory adjustment.
Example response
{
"id": "123ABC-1234567890",
"objectType": "qbd_inventory_adjustment",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"account": {
"id": "80000001-1234567890",
"fullName": "Inventory Shrinkage"
},
"inventorySite": {
"id": "80000001-1234567890",
"fullName": "Main Warehouse"
},
"transactionDate": "2024-10-01",
"refNumber": "INVADJ-1234",
"customer": {
"id": "80000001-1234567890",
"fullName": "Acme Corporation"
},
"class": {
"id": "80000001-1234567890",
"fullName": "Inventory Adjustment"
},
"memo": "Adjusted quantity due to physical count discrepancy",
"externalId": "12345678-abcd-1234-abcd-1234567890ab",
"lines": [
{
"id": "456DEF-1234567890",
"objectType": "qbd_inventory_adjustment_line",
"item": {
"id": "80000001-1234567890",
"fullName": "Widget A"
},
"serialNumber": "SN1234567890",
"serialNumberAction": "added",
"lotNumber": "LOT2023-001",
"expirationDate": "2025-12-31",
"inventorySiteLocation": {
"id": "80000001-1234567890",
"fullName": "Aisle 3, Shelf B"
},
"quantityDifference": 5,
"valueDifference": 7
}
],
"customFields": [
{
"ownerId": "0",
"name": "Customer Rating",
"type": "string_1024_type",
"value": "Premium"
}
]
}