The Asset object
Global ID (GID) of the asset.
GID of the organization this asset belongs to.
Name of the asset.
Quantity of this asset (e.g. number of laptops of this model).
GID of the profile responsible for this asset.
Whether the asset is physical or virtual. See AssetType enum.
Description of the types of data stored on or processed by this asset.
GID of the snapshot this asset record belongs to, or null for live data.
ISO 8601 timestamp of when the asset was created.
ISO 8601 timestamp of the last update.
AssetType enum
| Value | Description |
|---|---|
PHYSICAL | A tangible, physical asset (e.g. laptop, server, USB drive) |
VIRTUAL | A digital or cloud-based asset (e.g. SaaS application, database, repository) |
Operations
listAssets
Returns all assets for the organization. MCP tool:listAssets
Parameters
GID of the organization.
Number of results per page.
Pagination cursor from a previous response’s
next_cursor.Response
Array of asset objects.
Cursor for the next page.
getAsset
Returns a single asset by ID. MCP tool:getAsset
Parameters
GID of the asset.
Response
The requested asset object.
addAsset
Creates a new asset. MCP tool:addAsset
Parameters
GID of the organization.
Asset name.
Quantity of the asset.
GID of the asset owner profile.
Asset type (
PHYSICAL or VIRTUAL).Description of data stored on this asset.
GIDs of vendors associated with this asset (e.g. the cloud provider hosting a virtual asset).
Response
The created asset object.
updateAsset
Updates an existing asset. MCP tool:updateAsset
Parameters
GID of the asset to update.
Updated name.
Updated quantity.
Updated owner GID.
Updated asset type.
Updated data types description.
Updated list of associated vendor GIDs.
Response
The updated asset object.
Example
Assets support snapshots — point-in-time records used during audits. Pass a
snapshot_id to the listAssets filter to retrieve the asset register as it existed at a specific audit period.