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.
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
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.
Path Parameters
The Id of the InventoryAsset record to retrieve.
Code Examples
curl -X GET \
"https://spaces.nexudus.com/api/spaces/inventoryassets/87654321" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
Name of the location this asset belongs to.
Display name of the asset (e.g. ‘Standing Desk #3’, ‘HP LaserJet’).
Free-text description of the asset.
Stock-keeping unit code for the asset.
Monetary value of the asset.
Name of the linked floor-plan desk.
Comma-separated full names of coworkers currently assigned to this asset.
Comma-separated IDs of coworkers currently assigned to this asset.
Comma-separated start dates of each coworker assignment.
Comma-separated end dates of each coworker assignment.
Name of the linked bookable resource.
Determines what this asset is assigned to: Location (1), Resource (2), or FloorPlanItem (3). See eInventoryAssetAssignToType enum values: 1 = Location, 2 = Resource, 3 = FloorPlanItem.
Unique record identifier.
Date and time the record was created (ISO 8601).
Date and time the record was last updated (ISO 8601).
Email of the user who last updated this record.
Whether the record was recently created.
External system identifier.
{
"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
}