API reference · Assets
POST/api/v1/assets

Create asset

Creates an asset for the authenticated tenant. The request body is validated with createAssetWithExtensionSchema; client_id, asset_type, asset_tag, name, and status are required. AssetService.create writes assets.tenant from the request context, inserts the asset, optionally upserts asset-type-specific extension_data, publishes an ASSET_CREATED event, and returns getWithDetails with HATEOAS links. In the current route wiring, req.context may be absent because no route-level API-key auth wrapper sets it, causing a 500 before creation.

RBAC · asset

Request body

Content type: application/json · schema AssetCreateRequest

client_idstring <uuid>Required
Client UUID from clients.client_id. Required.
asset_typestringRequired
Asset type. Determines the optional extension data table.
Enum: workstationnetwork_deviceservermobile_deviceprinterunknown
asset_tagstringRequired
Required tenant-specific asset tag.
min length 1 · max length 255
namestringRequired
Required asset name.
min length 1 · max length 255
statusstringRequired
Required asset status.
min length 1
locationstring
Optional asset location.
serial_numberstring
Optional serial number.
purchase_datestring <date-time>
Optional purchase date/time.
warranty_end_datestring <date-time>
Optional warranty end date/time.
extension_dataobject
Asset-type-specific extension data written to the corresponding extension table for workstation, network device, server, mobile device, or printer assets.

Response body

Success response 201 · schema AssetResourceResponse

successbooleanRequired
Enum: true
dataobjectRequired
dataobjectRequired
asset_idstring <uuid>Required
Primary key from assets.asset_id.
client_idstring <uuid>Required
Client UUID from assets.client_id.
asset_typestringRequired
Asset type stored in assets.asset_type.
Enum: workstationnetwork_deviceservermobile_deviceprinterunknown
asset_tagstringRequired
Tenant-specific asset tag.
namestringRequired
Asset display name.
statusstringRequired
Asset status.
locationstringNullable
Asset location, when recorded.
serial_numberstringNullable
Asset serial number, when recorded.
purchase_datestringNullable
Asset purchase date from assets.purchase_date.
warranty_end_datestringNullable
Warranty end date from assets.warranty_end_date.
created_atstring <date-time>Required
Asset creation timestamp.
updated_atstring <date-time>Required
Asset last update timestamp.
tenantstring <uuid>Required
Tenant UUID from assets.tenant; filtered to the authenticated request context.
client_namestring
Client name selected from the joined clients table.
warranty_statusstring
Computed from warranty_end_date by SQL CASE expression.
Enum: no_warrantyexpiredexpiring_soonactive
maintenance_statusstring
Optional computed maintenance status when present in service results.
extension_dataobject
relationshipsarray of object
Related asset rows included by getWithDetails after create.
itemsobject
documentsarray of object
Associated document rows included by getWithDetails after create.
itemsobject
maintenance_schedulesarray of object
Maintenance schedule rows included by getWithDetails after create.
itemsobject
_linksobject
HATEOAS links generated from the asset_id.
metaobjectRequired
timestampstring <date-time>Required
Response timestamp generated by createApiResponse/createErrorResponse.
versionstringRequired
API response version string.

Response codes

201
Asset created successfully.
400
Request body validation failed.
401
x-api-key is missing at middleware.
403
Authenticated request context lacks permission to create assets when auth wiring is present.
500
Unexpected error, including missing req.context in the current route wiring.