Constituencies Test
CRM/Constituencies/{constituencyId}
Get details of constituency.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Constituencies/{constituencyId}

URI Parameters

Parameter Name Data Type Required Notes
constituencyId integer Y

Request Body

None.

No request body.

Response object type : Constituency

Response object type 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:23:07.1313992-07:00",
  "StartDate": "2025-04-24T05:23:07.1313992-07:00",
  "CreatedDateTime": "2025-04-24T05:23:07.1313992-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T05:23:07.1313992-07:00",
  "UpdatedBy": "sample string 3",
  "EditIndicator": true
}
<Constituency xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <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:23:07.1313992-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <EndDate>2025-04-24T05:23:07.1313992-07:00</EndDate>
  <Id>1</Id>
  <StartDate>2025-04-24T05:23:07.1313992-07:00</StartDate>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:23:07.1313992-07:00</UpdatedDateTime>
</Constituency>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituencyId has been marked as required. Required