Skip to main content
GET
/
api
/
spaces
/
coworkerinventoryassets
/
{id}
{
  "CoworkerId": 123,
  "CoworkerCoworkerType": "<string>",
  "CoworkerFullName": "<string>",
  "CoworkerBillingName": "<string>",
  "CoworkerCompanyName": "<string>",
  "CoworkerTeamNames": "<string>",
  "BusinessId": 123,
  "InventoryAssetId": 123,
  "InventoryAssetName": "<string>",
  "InventoryAssetSku": "<string>",
  "InventoryAssetValue": "<string>",
  "InventoryAssetUniqueId": "<string>",
  "Notes": "<string>",
  "AssignedFrom": "<string>",
  "AssignedTo": "<string>",
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A CoworkerInventoryAsset tracks inventory assets — such as chairs, desks, monitors, or other physical items — that have been assigned to a customer. Each record links a Coworker to an InventoryAsset at a specific Business (location), with an assignment period defined by AssignedFrom and optionally AssignedTo. If AssignedTo is null, the asset is still assigned to the customer. Read-only fields prefixed with Coworker* and InventoryAsset* are denormalized from the linked coworker and inventory asset records for convenience when listing or filtering.

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 CoworkerInventoryAsset-Read role.

Path Parameters

id
integer
required
The Id of the CoworkerInventoryAsset record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/spaces/coworkerinventoryassets/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

CoworkerId
integer
Coworker Id.
CoworkerCoworkerType
string
Type of the linked coworker (e.g. Member, Team Member).
CoworkerFullName
string
Full name of the linked coworker.
CoworkerBillingName
string
Billing name of the linked coworker.
CoworkerCompanyName
string
Company name of the linked coworker.
CoworkerTeamNames
string
Comma-separated team names the linked coworker belongs to.
BusinessId
integer
Business Id.
InventoryAssetId
integer
Inventory Asset Id.
InventoryAssetName
string
Name of the linked inventory asset.
InventoryAssetSku
string
SKU code of the linked inventory asset.
InventoryAssetValue
string
Monetary value of the linked inventory asset.
InventoryAssetUniqueId
string
Unique identifier (e.g. serial number) of the linked inventory asset.
Notes
string
Free-text notes about this asset assignment.
AssignedFrom
string
Date the asset was assigned to the customer.
AssignedTo
string
Date the asset assignment ends. Null if still assigned.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "CoworkerId": 0,
  "CoworkerCoworkerType": null,
  "CoworkerFullName": null,
  "CoworkerBillingName": null,
  "CoworkerCompanyName": null,
  "CoworkerTeamNames": null,
  "BusinessId": 0,
  "InventoryAssetId": 0,
  "InventoryAssetName": null,
  "InventoryAssetSku": null,
  "InventoryAssetValue": null,
  "InventoryAssetUniqueId": null,
  "Notes": null,
  "AssignedFrom": "2025-01-15T10:30:00Z",
  "AssignedTo": null,
  "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": "CoworkerInventoryAsset Example",
  "LocalizationDetails": null,
  "CustomFields": null
}