Docs

Docs

x-cpod-domain: investments

Investments

Tech portfolio items and cost centers.

Try in explorer client.investments

TechPortfolioItem

A budgeted technology investment line.

REST path/api/v1/investments/portfolio
Operations
listgetcreateupdate
SDK
// list — returns only your records; add filters/search:
await client.investments.portfolio.list()

// create:
await client.investments.portfolio.create({
  id: "rec_01HXEXAMPLE",
  tenant_id: "example tenant_id",
  created_at: "2026-01-01T00:00:00Z",
  updated_at: "2026-01-01T00:00:00Z",
  app_id: "example app_id",
  created_by: "rec_01HXEXAMPLE",
})
FieldTypeDescription
id*uuidServer-assigned ULID with type prefix (e.g. per_…).
tenant_id*stringTenant scope — auto-stamped from the caller's JWT.
app_idstringApp 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-timeServer stamp.
updated_at*date-timeServer stamp; updated on every patch.
created_byuuidPerson id from the caller's JWT (sub).
updated_byuuidPerson id from the last writer's JWT (sub).
sourcestringProvenance tag — defaults to 'edm'.
source_typeenumWhere the write originated. Defaults to 'api'.frontendbackendserversystemapi
is_deletedbooleanSoft-delete flag. Excluded from default list queries.
deleted_atdate-timeStamped when soft-deleted; null otherwise.
deleted_byuuidPerson id who soft-deleted; null otherwise.
schema_versionnumberDocument schema version. Bumped on incompatible writes.
namestringHuman-readable name for this portfolio item or investment initiative.
descriptionstringOptional free-text description of the initiative's scope and objectives.
business_capabilitystringBusiness capability this investment supports (e.g. 'Collaboration', 'Security', 'Developer Productivity').
strategic_prioritystringStrategic importance of this investment as assessed by business or IT leadership.
owner_iduuidUUID of the Person accountable for this portfolio item.
linked_license_idsjsonUUIDs of SoftwareLicense records that belong to this portfolio item.
linked_asset_idsjsonUUIDs of TechnologyAsset or PhysicalAsset records that belong to this portfolio item.
budgeted_cost_amountnumberApproved budget for this portfolio item in the specified currency.
actual_cost_amountnumberActual spend to date for this portfolio item in the specified currency.
currencystringISO 4217 three-letter currency code for budgeted and actual cost amounts.
initiative_tagstringOptional free-form tag linking this item to an external programme or initiative tracker.
statusstringCurrent lifecycle status of this portfolio item.

CostCenter

A cost center for chargebacks.

REST path/api/v1/investments/cost-centers
Operations
listgetcreateupdate
SDK
// list — returns only your records; add filters/search:
await client.investments.costCenters.list()

// create:
await client.investments.costCenters.create({
  id: "rec_01HXEXAMPLE",
  tenant_id: "example tenant_id",
  created_at: "2026-01-01T00:00:00Z",
  updated_at: "2026-01-01T00:00:00Z",
  app_id: "example app_id",
  created_by: "rec_01HXEXAMPLE",
})
FieldTypeDescription
id*uuidServer-assigned ULID with type prefix (e.g. per_…).
tenant_id*stringTenant scope — auto-stamped from the caller's JWT.
app_idstringApp 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-timeServer stamp.
updated_at*date-timeServer stamp; updated on every patch.
created_byuuidPerson id from the caller's JWT (sub).
updated_byuuidPerson id from the last writer's JWT (sub).
sourcestringProvenance tag — defaults to 'edm'.
source_typeenumWhere the write originated. Defaults to 'api'.frontendbackendserversystemapi
is_deletedbooleanSoft-delete flag. Excluded from default list queries.
deleted_atdate-timeStamped when soft-deleted; null otherwise.
deleted_byuuidPerson id who soft-deleted; null otherwise.
schema_versionnumberDocument schema version. Bumped on incompatible writes.
codestringUnique human-readable cost center code, as used in the financial system (e.g. 'CC-ENG-001').
namestringHuman-readable display name for this cost center.
owner_iduuidUUID of the Person who is the budget owner for this cost center.
parent_cost_center_iduuidUUID of the parent CostCenter, if this is a child node in a cost center hierarchy.
budget_amountnumberAnnual budget allocated to this cost center in the specified currency.
currencystringISO 4217 three-letter currency code for the budget amount.
fiscal_yearstringFiscal year to which the budgetAmount applies (e.g. '2026').
statusstringWhether this cost center is actively in use.