Rankings Test
CRM/Rankings/{rankingId}
Update a ranking.
Http Verb PUT
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

Request object type : Ranking

Request object type Ranking has the following properties.
Property Name Data Type Length Required Readonly Notes
Constituent Entity Y
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
EditIndicator boolean
Id integer Y Non-updatable
Rank integer N
RankType RankTypeSummary Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Id": 1,
  "CreatedDateTime": "2025-04-24T09:44:25.0276324-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T09:44:25.0276324-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-24T09:44:25.0276324-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-24T09:44:25.0276324-07:00</UpdatedDateTime>
</Ranking>

Response object type : Ranking

Response object type Ranking has the following properties.
Property Name Data Type Length Required Readonly Notes
Constituent Entity Y
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
EditIndicator boolean
Id integer Y Non-updatable
Rank integer N
RankType RankTypeSummary Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Id": 1,
  "CreatedDateTime": "2025-04-24T09:44:25.0276324-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T09:44:25.0276324-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-24T09:44:25.0276324-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-24T09:44:25.0276324-07:00</UpdatedDateTime>
</Ranking>
Change Version Description Contract Old New
Parameter Changed 15.0.0 rankingId has been marked as required. Required