UpgradeLogs Test
Admin/UpgradeLogs/{upgradeLogId}
Returns an upgradeLog for the given id.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Admin/UpgradeLogs/{upgradeLogId}

URI Parameters

Parameter Name Data Type Required Notes
upgradeLogId integer Y

Request Body

None.

No request body.

Response object type : UpgradeLog

Response object type UpgradeLog has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
HotFixNumber integer N
Id integer N
ReleaseDescription string N
ScriptId integer N
UpdatedBy string N
UpdatedDateTime date N
UpgradeCategorySummary UpgradeCategorySummary N
FK: TR_UPGRADE_CATEGORY.id   Resource: UpgradeCategories
Version string N
{
  "Id": 1,
  "ScriptId": 2,
  "Version": "sample string 3",
  "UpgradeCategorySummary": {
    "Id": 1,
    "Description": "sample string 1"
  },
  "HotFixNumber": 1,
  "ReleaseDescription": "sample string 4",
  "CreatedDateTime": "2025-04-24T08:35:57.5475066-07:00",
  "CreateLocation": "sample string 5",
  "CreatedBy": "sample string 6",
  "UpdatedDateTime": "2025-04-24T08:35:57.5475066-07:00",
  "UpdatedBy": "sample string 7"
}
<UpgradeLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 5</CreateLocation>
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedDateTime>2025-04-24T08:35:57.5475066-07:00</CreatedDateTime>
  <HotFixNumber>1</HotFixNumber>
  <Id>1</Id>
  <ReleaseDescription>sample string 4</ReleaseDescription>
  <ScriptId>2</ScriptId>
  <UpdatedBy>sample string 7</UpdatedBy>
  <UpdatedDateTime>2025-04-24T08:35:57.5475066-07:00</UpdatedDateTime>
  <UpgradeCategorySummary>
    <Description>sample string 1</Description>
    <Id>1</Id>
  </UpgradeCategorySummary>
  <Version>sample string 3</Version>
</UpgradeLog>
Change Version Description Contract Old New
Parameter Changed 15.0.0 upgradeLogId has been marked as required. Required