List all item sites
Returns a list of item sites. Use the cursor parameter to paginate through the results.
Query parameters
Filter for specific item sites by their QuickBooks-assigned unique identifier(s).
IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.
NOTE: If any of the values you specify in this parameter are not found, the request will return an error.
Filter for specific item sites by their QuickBooks-assigned unique identifier(s).
IMPORTANT: If you include this parameter, QuickBooks will ignore all other query parameters for this request.
NOTE: If any of the values you specify in this parameter are not found, the request will return an error.
[ "80000001-1234567890" ]
Filter for item sites that match this item type.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
Filter for item sites that match this item type.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
Filter for item sites for these items.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
Filter for item sites for these items.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
[ "80000001-1234567890" ]
Filter for item sites at these sites. A site represents a physical location, such as a warehouse or store.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
Filter for item sites at these sites. A site represents a physical location, such as a warehouse or store.
NOTE: QuickBooks Desktop only supports itemType or item/site filters for item-sites requests, not both. Do not use itemType together with itemIds or siteIds.
[ "80000001-1234567890" ]
The maximum number of objects to return. Accepts values ranging from 1 to 150, defaults to 150. When used with cursor-based pagination, this parameter controls how many results are returned per page. To paginate through results, combine this with the cursor parameter. Each response will include a nextCursor value that can be passed to subsequent requests to retrieve the next page of results.
The maximum number of objects to return. Accepts values ranging from 1 to 150, defaults to 150. When used with cursor-based pagination, this parameter controls how many results are returned per page. To paginate through results, combine this with the cursor parameter. Each response will include a nextCursor value that can be passed to subsequent requests to retrieve the next page of results.
The pagination token to fetch the next set of results when paginating with the limit parameter. Do not include this parameter on the first call. Use the nextCursor value returned in the previous response to request subsequent results.
The pagination token to fetch the next set of results when paginating with the limit parameter. Do not include this parameter on the first call. Use the nextCursor value returned in the previous response to request subsequent results.
Filter for item sites that are active, inactive, or both.
Filter for item sites that are active, inactive, or both.
Headers
The ID of the End-User to receive this request.
The ID of the End-User to receive this request.
Response
Returns a list of item sites.
Example response
{
"objectType": "list",
"url": "/v1/quickbooks-desktop/item-sites",
"data": [
{
"id": "80000001-1234567890",
"objectType": "qbd_item_site",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"inventoryAssemblyItem": {
"id": "80000001-1234567890",
"fullName": "Inventory Assembly Item"
},
"inventoryItem": {
"id": "80000001-1234567890",
"fullName": "Inventory Item"
},
"inventorySite": {
"id": "80000001-1234567890",
"fullName": "Main Warehouse"
},
"inventorySiteLocation": {
"id": "80000001-1234567890",
"fullName": "Aisle 3, Shelf B"
},
"reorderLevel": 25,
"quantityOnHand": 150,
"quantityOnPurchaseOrders": 40,
"quantityOnSalesOrders": 30,
"quantityToBeBuiltByPendingBuildTransactions": 15,
"quantityRequiredByPendingBuildTransactions": 12,
"quantityOnPendingTransfers": 8,
"assemblyBuildPoint": 20
}
],
"nextCursor": "12345678-abcd-abcd-example-1234567890ab",
"remainingCount": 10
}