Asset Installations
An installation links a marketplace asset to a project, enabling deployment and usage tracking.
The Asset Installation Object
| Field | Type | Description |
|---|---|---|
| id | string | Unique installation ID with prefix inst_ (e.g. inst_uti_001) |
| assetId | string | ID of the installed marketplace asset |
| projectId | string | ID of the project this asset is installed into |
| status | string | One of: active | inactive | error |
| config | object | Key-value configuration overrides specific to this installation |
| callsThisMonth | integer | Number of API calls attributed to this installation in the current billing period |
| installedAt | datetime | ISO 8601 UTC timestamp of when the asset was installed |
Endpoints
Returns all asset installations in a project.
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
| projectIde.g. proj_rpm_001 | query | string | required | Project to scope the list |
Request
curl "https://api.healthcloud.ai/v1/asset-installations?projectId=proj_rpm_001" \ -H "Authorization: Bearer hc_test_sk_demo_live_xxxxxx"
Response
Response200
{ "data": [ { "id": "inst_uti_001", "assetId": "asset_uti_agent_v1", "projectId": "proj_rpm_001", "status": "active", "installedAt": "2026-01-10T08:00:00Z" } ] }