> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one InventoryAsset

> Retrieve a single InventoryAsset record by its Id.

An **InventoryAsset** represents a physical asset — such as a desk, chair, monitor, printer, or other piece of equipment — that a location can track and optionally assign to customers.

Each asset belongs to a single location (`BusinessId`) and can be assigned to a specific scope via `AssignToType`:

| AssignToType value | Meaning                                                                                |
| ------------------ | -------------------------------------------------------------------------------------- |
| 1 (Location)       | Assigned to the location generally, not tied to a specific resource or floor-plan item |
| 2 (Resource)       | Linked to a bookable resource (e.g. a specific meeting room) via `ResourceId`          |
| 3 (FloorPlanItem)  | Linked to a floor-plan desk via `FloorPlanDeskId`                                      |

Assets may also be assigned to one or more coworkers. The read-only fields `CoworkerIds`, `CoworkerFullNames`, `CoworkerStartDates`, and `CoworkerEndDates` reflect current assignments. To manage coworker-level assignments, use the `CoworkerInventoryAsset` entity instead.

## Authentication

<Note>
  This endpoint requires OAuth2 authentication. Include a valid bearer token in the `Authorization` header.
  The authenticated user must be a full unrestricted administrator or have the **`InventoryAsset-Read`** role.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the InventoryAsset record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/inventoryassets/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/inventoryassets/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/inventoryassets/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="BusinessId" type="integer">
  Business Id.
</ResponseField>

<ResponseField name="BusinessName" type="string">
  Name of the location this asset belongs to.
</ResponseField>

<ResponseField name="Name" type="string">
  Display name of the asset (e.g. 'Standing Desk #3', 'HP LaserJet').
</ResponseField>

<ResponseField name="Description" type="string">
  Free-text description of the asset.
</ResponseField>

<ResponseField name="Sku" type="string">
  Stock-keeping unit code for the asset.
</ResponseField>

<ResponseField name="ImageFileName" type="string">
  Image File Name.
</ResponseField>

<ResponseField name="NewImageUrl" type="string">
  New Image Url.
</ResponseField>

<ResponseField name="ClearImageFile" type="boolean">
  Clear Image File.
</ResponseField>

<ResponseField name="Value" type="number">
  Monetary value of the asset.
</ResponseField>

<ResponseField name="FloorPlanDeskId" type="integer">
  Floor Plan Desk Id.
</ResponseField>

<ResponseField name="FloorPlanDeskName" type="string">
  Name of the linked floor-plan desk.
</ResponseField>

<ResponseField name="CoworkerFullNames" type="string">
  Comma-separated full names of coworkers currently assigned to this asset.
</ResponseField>

<ResponseField name="CoworkerIds" type="string">
  Comma-separated IDs of coworkers currently assigned to this asset.
</ResponseField>

<ResponseField name="CoworkerStartDates" type="string">
  Comma-separated start dates of each coworker assignment.
</ResponseField>

<ResponseField name="CoworkerEndDates" type="string">
  Comma-separated end dates of each coworker assignment.
</ResponseField>

<ResponseField name="ResourceId" type="integer">
  Resource Id.
</ResponseField>

<ResponseField name="ResourceName" type="string">
  Name of the linked bookable resource.
</ResponseField>

<ResponseField name="AssignToType" type="integer">
  Determines what this asset is assigned to: Location (1), Resource (2), or FloorPlanItem (3). See `eInventoryAssetAssignToType` enum values: `1` = Location, `2` = Resource, `3` = FloorPlanItem.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "BusinessId": 0,
  "BusinessName": null,
  "Name": "",
  "Description": null,
  "Sku": null,
  "ImageFileName": null,
  "NewImageUrl": null,
  "ClearImageFile": null,
  "Value": null,
  "FloorPlanDeskId": null,
  "FloorPlanDeskName": null,
  "CoworkerFullNames": null,
  "CoworkerIds": null,
  "CoworkerStartDates": null,
  "CoworkerEndDates": null,
  "ResourceId": null,
  "ResourceName": null,
  "AssignToType": 0,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "InventoryAsset Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
