PerformanceTypes Test
ReferenceData/PerformanceTypes/{id}
Update an existing performance type.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/ReferenceData/PerformanceTypes/{id}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y

Request Body

Request object type : PerformanceType

Request object type PerformanceType has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updateable
CreatedDateTime date N Non-updateable
CreateLocation string N Non-updateable
Description string 30 N
Id integer Y Non-updateable
Inactive boolean Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
ValidCountryList string 1000 N Comma delimited string of ISO Alpha3 codes.
FK: TR_COUNTRY.ISO_Alpha_3_code
{
  "CreatedDateTime": "2025-04-24T03:59:04.2332496-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Description": "sample string 3",
  "ValidCountryList": "sample string 4",
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T03:59:04.2332496-07:00",
  "UpdatedBy": "sample string 5"
}
<PerformanceType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T03:59:04.2332496-07:00</CreatedDateTime>
  <Description>sample string 3</Description>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T03:59:04.2332496-07:00</UpdatedDateTime>
  <ValidCountryList>sample string 4</ValidCountryList>
</PerformanceType>

Response object type : PerformanceType

Response object type PerformanceType has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updateable
CreatedDateTime date N Non-updateable
CreateLocation string N Non-updateable
Description string 30 N
Id integer Y Non-updateable
Inactive boolean Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
ValidCountryList string 1000 N Comma delimited string of ISO Alpha3 codes.
FK: TR_COUNTRY.ISO_Alpha_3_code
{
  "CreatedDateTime": "2025-04-24T03:59:04.2332496-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Description": "sample string 3",
  "ValidCountryList": "sample string 4",
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T03:59:04.2332496-07:00",
  "UpdatedBy": "sample string 5"
}
<PerformanceType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T03:59:04.2332496-07:00</CreatedDateTime>
  <Description>sample string 3</Description>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T03:59:04.2332496-07:00</UpdatedDateTime>
  <ValidCountryList>sample string 4</ValidCountryList>
</PerformanceType>
Change Version Description Contract Old New
Property Added 15.1.13 ValidCountryList has been added to PerformanceType PerformanceType PerformanceType.ValidCountryList
Property Added 15.1.13 ValidCountryList has been added to PerformanceType PerformanceType PerformanceType.ValidCountryList
Parameter Changed 15.0.0 id has been marked as required. Required