Projects

Projects are isolated workspaces within an organization. They hold assets, deployments, workflows, and data.

The Project Object

FieldTypeDescription
idstringUnique project ID with prefix proj_ (e.g. proj_rpm_001)
namestringHuman-readable project name
descriptionnullablestringOptional longer description of the project purpose
statusstringOne of: active | archived | draft
environmentstringPrimary target environment: production | staging | development
fhirVersionstringFHIR version used by this project (e.g. R4)
assetCountintegerNumber of installed assets in this project
createdAtdatetimeISO 8601 UTC timestamp of project creation

Endpoints

Returns all projects in the organization.

Parameters

ParameterInTypeRequiredDescription
statuse.g. activequerystringoptionalFilter by status (active|archived)

Request

curl "https://api.healthcloud.ai/v1/projects" \
  -H "Authorization: Bearer hc_test_sk_demo_live_xxxxxx"

Response

Response200
{
  "data": [
    {
      "id": "proj_rpm_001",
      "name": "RPM Hypertension Program",
      "status": "active",
      "environment": "production",
      "assetCount": 7,
      "createdAt": "2025-06-01T00:00:00Z"
    }
  ],
  "meta": { "total": 5 }
}

Related Resources