PhysicalAsset
/api/v1/physical-assetsA tracked physical asset (laptop, monitor, IoT device).
listgetcreateupdatedeleteSchema
| Field | Type | Notes |
|---|---|---|
| id* | uuid | Server-assigned ULID with type prefix (e.g. per_…). |
| tenant_id* | string | Tenant scope — auto-stamped from the caller's JWT. |
| app_id | string | App scope. Stamped ONLY when the caller's JWT was minted for a specific Application (integration API keys). Absent for human-user sessions. Filters reads when present. |
| created_at* | date-time | Server stamp. |
| updated_at* | date-time | Server stamp; updated on every patch. |
| created_by | uuid | Person id from the caller's JWT (sub). |
| updated_by | uuid | Person id from the last writer's JWT (sub). |
| source | string | Provenance tag — defaults to 'edm'. |
| source_type | enum | frontend | backend | server | system | apiWhere the write originated. Defaults to 'api'. |
| is_deleted | boolean | Soft-delete flag. Excluded from default list queries. |
| deleted_at | date-time | Stamped when soft-deleted; null otherwise. |
| deleted_by | uuid | Person id who soft-deleted; null otherwise. |
| schema_version | number | Document schema version. Bumped on incompatible writes. |
| asset_tag | string | Enterprise inventory asset tag — the physical or logical label affixed to or associated with the device by IT. |
| name | string | Human-readable name or hostname for the device. |
| serial_number | string | Manufacturer serial number of the device. Used for warranty lookups and insurance claims. |
| model | string | Manufacturer model name or product line. |
| manufacturer | string | Name of the device manufacturer. |
| type | string | Hardware category of this physical asset. |
| status | string | Current operational status. 'lost_stolen' assets should trigger immediate security review of associated accounts. |
| assigned_to | json | Current assignment details for this device. |
| purchase_date | date-time | Date on which this device was purchased by the enterprise. |
| purchase_cost | json | Original purchase cost of this device. |
| warranty_expiry | date-time | Date on which the manufacturer or extended warranty expires. |
| os | json | Operating system installed on this device. |
| managed_by | string | Name of the MDM or endpoint management tool currently managing this device (e.g. 'Jamf Pro', 'Microsoft Intune', 'CrowdStrike Falcon'). |
| last_seen_at | date-time | ISO 8601 timestamp of the last check-in or heartbeat received from this device by the MDM system. Set by the platform during sync. |
API
client.assets.*Loading manifest…