---
title: "Retrieve an inventory site"
method: GET
path: "/quickbooks-desktop/inventory-sites/{id}"
---

# Retrieve an inventory site

`GET /quickbooks-desktop/inventory-sites/{id}`

Retrieves an inventory site by ID.

**IMPORTANT:** If you need to fetch multiple specific inventory sites 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.

## Path parameters

- `id` string, required — The QuickBooks-assigned unique identifier of the inventory site to retrieve.

## Headers

- `Conductor-End-User-Id` string, required — The ID of the End-User to receive this request.

## Response `200`

Returns the specified inventory site.

- QbdInventorySite
  - `id` string, required — The unique identifier assigned by QuickBooks to this inventory site. This ID is unique across all inventory sites but not across different QuickBooks object types.
  - `objectType` 'qbd_inventory_site', required — The type of object. This value is always `"qbd_inventory_site"`.
  - `createdAt` string, required — The date and time when this inventory site was created, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.
  - `updatedAt` string, required — The date and time when this inventory site was last updated, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.
  - `revisionNumber` string, required — The current QuickBooks-assigned revision number of this inventory site object, which changes each time the object is modified. When updating this object, you must provide the most recent `revisionNumber` to ensure you're working with the latest data; otherwise, the update will return an error.
  - `name` string, required — The case-insensitive unique name of this inventory site, unique across all inventory sites. **NOTE**: Inventory sites do not have a `fullName` field because they are not hierarchical objects, which is why `name` is unique for them but not for objects that have parents.
  - `isActive` boolean, required — Indicates whether this inventory site is active. Inactive objects are typically hidden from views and reports in QuickBooks. Defaults to `true`.
  - `parent` object, nullable, required — The parent inventory site one level above this one in the hierarchy.
    - `id` string, nullable, required — The unique identifier assigned by QuickBooks to this object. This ID is unique across all objects of the same type, but not across different QuickBooks object types.
    - `fullName` string, nullable, required — The fully-qualified unique name for this object, formed by combining the names of its parent objects with its own `name`, separated by colons. Not case-sensitive.
  - `isDefault` boolean, nullable, required — Indicates whether this inventory site is the default site used when no specific site is provided during the creation of other objects.
  - `description` string, nullable, required — A description of this inventory site.
  - `contact` string, nullable, required — The name of the primary contact person for this inventory site.
  - `phone` string, nullable, required — The inventory site's primary telephone number.
  - `fax` string, nullable, required — The inventory site's fax number.
  - `email` string, nullable, required — The inventory site's email address.
  - `address` QbdSiteAddress, required
    - `line1` string, nullable, required — The first line of the site address (e.g., street, PO Box, or company name).
    - `line2` string, nullable, required — The second line of the site address, if needed (e.g., apartment, suite, unit, or building).
    - `line3` string, nullable, required — The third line of the site address, if needed.
    - `line4` string, nullable, required — The fourth line of the site address, if needed.
    - `line5` string, nullable, required — The fifth line of the site address, if needed.
    - `city` string, nullable, required — The city, district, suburb, town, or village name of the site address.
    - `state` string, nullable, required — The state, county, province, or region name of the site address.
    - `postalCode` string, nullable, required — The postal code or ZIP code of the site address.
    - `country` string, nullable, required — The country name of the site address.

---

[API](https://skmtc.net/conductor-is/apis/conductor-api.md) · [All operations](https://skmtc.net/conductor-is/apis/conductor-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/conductor-is/conductor-api/revisions/0b07b3ebe160/schema)
