Assets Test
CRM/Assets?constituentId={constituentId}&includeAffiliations={includeAffiliations}
Get details of all the assets for the specified constituent id and all its visible affiliations' assets as well. To exclude assets of the visible affiliations pass includeAffiliations=false.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Assets?constituentId={constituentId}&includeAffiliations={includeAffiliations}

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer Y Limit results by constituent.
includeAffiliations boolean N Include all of the constituent's affiliates in the results (default: true).

Request Body

None.

No request body.

Response object type : Collection of Asset

Response object type Collection of Asset has the following properties.
Property Name Data Type Length Required Readonly Notes
AcquisitionDateTime date N
AssetType AssetTypeSummary N
FK: TR_ASSET.id   Resource: AssetTypes
Constituent Entity N
FK: T_CUSTOMER.customer_no   Resource: Constituents
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Description string N
EditIndicator boolean
EstimatedValue decimal number N
Id integer N
Notes string N
SaleDateTime date N
UpdatedBy string N
UpdatedDateTime date N
[
  {
    "AcquisitionDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "CreatedDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "Id": 1,
    "Description": "sample string 3",
    "EstimatedValue": 4.0,
    "EditIndicator": true,
    "UpdatedDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "UpdatedBy": "sample string 6",
    "Notes": "sample string 7",
    "SaleDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "AssetType": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "Constituent": {
      "Id": 1
    }
  },
  {
    "AcquisitionDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "CreatedDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "Id": 1,
    "Description": "sample string 3",
    "EstimatedValue": 4.0,
    "EditIndicator": true,
    "UpdatedDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "UpdatedBy": "sample string 6",
    "Notes": "sample string 7",
    "SaleDateTime": "2025-04-24T05:08:02.0804814-07:00",
    "AssetType": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "Constituent": {
      "Id": 1
    }
  }
]
<Assets xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Asset>
    <AcquisitionDateTime>2025-04-24T05:08:02.0804814-07:00</AcquisitionDateTime>
    <AssetType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </AssetType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:08:02.0804814-07:00</CreatedDateTime>
    <Description>sample string 3</Description>
    <EditIndicator>true</EditIndicator>
    <EstimatedValue>4</EstimatedValue>
    <Id>1</Id>
    <Notes>sample string 7</Notes>
    <SaleDateTime>2025-04-24T05:08:02.0804814-07:00</SaleDateTime>
    <UpdatedBy>sample string 6</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:08:02.0804814-07:00</UpdatedDateTime>
  </Asset>
  <Asset>
    <AcquisitionDateTime>2025-04-24T05:08:02.0804814-07:00</AcquisitionDateTime>
    <AssetType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </AssetType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:08:02.0804814-07:00</CreatedDateTime>
    <Description>sample string 3</Description>
    <EditIndicator>true</EditIndicator>
    <EstimatedValue>4</EstimatedValue>
    <Id>1</Id>
    <Notes>sample string 7</Notes>
    <SaleDateTime>2025-04-24T05:08:02.0804814-07:00</SaleDateTime>
    <UpdatedBy>sample string 6</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:08:02.0804814-07:00</UpdatedDateTime>
  </Asset>
</Assets>
Change Version Description Contract Old New
Resource Added 15.0.0 New resource added. Assets