Rankings Test
CRM/Rankings/{rankingId}
Get details of a ranking.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Rankings/{rankingId}

URI Parameters

Parameter Name Data Type Required Notes
rankingId integer Y

Request Body

None.

No request body.

Response object type : Ranking

Response object type Ranking has the following properties.
Property Name Data Type Length Required Readonly Notes
Constituent Entity N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean
Id integer N
Rank integer N
RankType RankTypeSummary N
UpdatedBy string N
UpdatedDateTime date N
{
  "Id": 1,
  "CreatedDateTime": "2025-04-24T05:23:07.0376551-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T05:23:07.0376551-07:00",
  "UpdatedBy": "sample string 3",
  "Constituent": {
    "Id": 1
  },
  "RankType": {
    "Id": 1,
    "Description": "sample string 1",
    "Inactive": true,
    "ControlGroup": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true
    }
  },
  "Rank": 1,
  "EditIndicator": true
}
<Ranking xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Constituent>
    <Id>1</Id>
  </Constituent>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T05:23:07.0376551-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <Rank>1</Rank>
  <RankType>
    <ControlGroup>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ControlGroup>
    <Description>sample string 1</Description>
    <Id>1</Id>
    <Inactive>true</Inactive>
  </RankType>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:23:07.0376551-07:00</UpdatedDateTime>
</Ranking>
Change Version Description Contract Old New
Parameter Changed 15.0.0 rankingId has been marked as required. Required