Interests Test
CRM/Interests?constituentId={constituentId}&categoryIds={categoryIds}&includeAffiliations={includeAffiliations}
Get all the interests of the specified constituent id. To exclude attributes of the visible affiliations pass includeAffiliations=false. To filter the interests of specific categories pass comma separted values under categories.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Interests?constituentId={constituentId}&categoryIds={categoryIds}&includeAffiliations={includeAffiliations}

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer Y Limit results by constituent.
categoryIds string N
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 Interest

Response object type Collection of Interest has the following properties.
Property Name Data Type Length Required Readonly Notes
Constituent Entity N Constituent that the Interest is associated.
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean N readonly Whether this interest is editable based on control group permission.
Id integer N
InterestType InterestTypeSummary N Type of the interest. Only one entity of this type may be created per constituent.
FK: TR_TKW.id   Resource: InterestTypes
Selected boolean N Typically indicates a selection that the constituent has made.
UpdatedBy string N
UpdatedDateTime date N
Weight integer N A value weighting the constituent's association to this interest type, complementing or in opposition to their indicated selections.
[
  {
    "InterestType": {
      "Description": "sample string 1",
      "Id": 1,
      "UsedIn": "sample string 2",
      "Category": {
        "Description": "sample string 1",
        "Id": 1
      },
      "ControlGroup": {
        "Description": "sample string 1",
        "Id": 2,
        "Inactive": true
      }
    },
    "Constituent": {
      "Id": 1
    },
    "CreatedDateTime": "2025-07-29T17:05:40.6318837-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "Id": 1,
    "UpdatedDateTime": "2025-07-29T17:05:40.6318837-07:00",
    "UpdatedBy": "sample string 3",
    "Selected": true,
    "Weight": 1,
    "EditIndicator": true
  },
  {
    "InterestType": {
      "Description": "sample string 1",
      "Id": 1,
      "UsedIn": "sample string 2",
      "Category": {
        "Description": "sample string 1",
        "Id": 1
      },
      "ControlGroup": {
        "Description": "sample string 1",
        "Id": 2,
        "Inactive": true
      }
    },
    "Constituent": {
      "Id": 1
    },
    "CreatedDateTime": "2025-07-29T17:05:40.6318837-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "Id": 1,
    "UpdatedDateTime": "2025-07-29T17:05:40.6318837-07:00",
    "UpdatedBy": "sample string 3",
    "Selected": true,
    "Weight": 1,
    "EditIndicator": true
  }
]
<Interests xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Interest>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-07-29T17:05:40.6318837-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <InterestType>
      <Category>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Category>
      <ControlGroup>
        <Description>sample string 1</Description>
        <Id>2</Id>
        <Inactive>true</Inactive>
      </ControlGroup>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <UsedIn>sample string 2</UsedIn>
    </InterestType>
    <Selected>true</Selected>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-07-29T17:05:40.6318837-07:00</UpdatedDateTime>
    <Weight>1</Weight>
  </Interest>
  <Interest>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-07-29T17:05:40.6318837-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <InterestType>
      <Category>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Category>
      <ControlGroup>
        <Description>sample string 1</Description>
        <Id>2</Id>
        <Inactive>true</Inactive>
      </ControlGroup>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <UsedIn>sample string 2</UsedIn>
    </InterestType>
    <Selected>true</Selected>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-07-29T17:05:40.6318837-07:00</UpdatedDateTime>
    <Weight>1</Weight>
  </Interest>
</Interests>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required