Constituencies Test
CRM/Constituencies?constituentId={constituentId}&includeAffiliations={includeAffiliations}
Get details of all the constituencies for the specified constituent id and all its visible affiliation's constituencies as well. To exclude constituencies of the visible affiliations pass includeAffiliations=false.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Constituencies?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 Constituency

Response object type Collection of Constituency has the following properties.
Property Name Data Type Length Required Readonly Notes
ConstituencyType ConstituencyTypeSummary N
Constituent Entity N
FK: T_CUSTOMER.customer_no   Resource: Constituents
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean
EndDate date
Id integer N
StartDate date
UpdatedBy string N
UpdatedDateTime date N
[
  {
    "Id": 1,
    "ConstituencyType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true,
      "ShortDescription": "sample string 2",
      "Rank": 3
    },
    "Constituent": {
      "Id": 1
    },
    "EndDate": "2025-04-24T05:22:59.8121433-07:00",
    "StartDate": "2025-04-24T05:22:59.8121433-07:00",
    "CreatedDateTime": "2025-04-24T05:22:59.8121433-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "UpdatedDateTime": "2025-04-24T05:22:59.8121433-07:00",
    "UpdatedBy": "sample string 3",
    "EditIndicator": true
  },
  {
    "Id": 1,
    "ConstituencyType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true,
      "ShortDescription": "sample string 2",
      "Rank": 3
    },
    "Constituent": {
      "Id": 1
    },
    "EndDate": "2025-04-24T05:22:59.8121433-07:00",
    "StartDate": "2025-04-24T05:22:59.8121433-07:00",
    "CreatedDateTime": "2025-04-24T05:22:59.8121433-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "UpdatedDateTime": "2025-04-24T05:22:59.8121433-07:00",
    "UpdatedBy": "sample string 3",
    "EditIndicator": true
  }
]
<Constituencies xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Constituency>
    <ConstituencyType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <Rank>3</Rank>
      <ShortDescription>sample string 2</ShortDescription>
    </ConstituencyType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:22:59.8121433-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <EndDate>2025-04-24T05:22:59.8121433-07:00</EndDate>
    <Id>1</Id>
    <StartDate>2025-04-24T05:22:59.8121433-07:00</StartDate>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:22:59.8121433-07:00</UpdatedDateTime>
  </Constituency>
  <Constituency>
    <ConstituencyType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <Rank>3</Rank>
      <ShortDescription>sample string 2</ShortDescription>
    </ConstituencyType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:22:59.8121433-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <EndDate>2025-04-24T05:22:59.8121433-07:00</EndDate>
    <Id>1</Id>
    <StartDate>2025-04-24T05:22:59.8121433-07:00</StartDate>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:22:59.8121433-07:00</UpdatedDateTime>
  </Constituency>
</Constituencies>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required