PriceTypes Test
TXN/PriceTypes/{priceTypeId}
Get details of a price type.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/PriceTypes/{priceTypeId}

URI Parameters

Parameter Name Data Type Required Notes
priceTypeId integer Y

Request Body

None.

No request body.

Response object type : PriceType

Response object type PriceType has the following properties.
Property Name Data Type Length Required Readonly Notes
AliasDescription string N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
DefaultTicketDesign TicketDesign N
FK: T_DESIGN.design_no
Description string N
EditableIndicator boolean N
EditIndicator boolean
Id integer N
Inactive boolean N
PriceTypeCategory PriceTypeCategorySummary N
FK: TR_PRICE_TYPE_CATEGORY.id   Resource: PriceTypeCategories
PriceTypeGroup PriceTypeGroupSummary N
ReasonIndicator boolean N
ShortDescription string N
UpdatedBy string N
UpdatedDateTime date N
{
  "CreatedDateTime": "2025-04-24T05:12:10.9524236-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Description": "sample string 3",
  "AliasDescription": "sample string 4",
  "EditableIndicator": true,
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T05:12:10.9524236-07:00",
  "UpdatedBy": "sample string 7",
  "PriceTypeGroup": {
    "Id": 1,
    "Description": "sample string 1"
  },
  "EditIndicator": true,
  "ReasonIndicator": true,
  "ShortDescription": "sample string 9",
  "DefaultTicketDesign": {
    "Id": 1,
    "Description": "sample string 1"
  },
  "PriceTypeCategory": {
    "Description": "sample string 1",
    "Id": 1
  }
}
<PriceType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <AliasDescription>sample string 4</AliasDescription>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T05:12:10.9524236-07:00</CreatedDateTime>
  <DefaultTicketDesign>
    <Description>sample string 1</Description>
    <Id>1</Id>
  </DefaultTicketDesign>
  <Description>sample string 3</Description>
  <EditIndicator>true</EditIndicator>
  <EditableIndicator>true</EditableIndicator>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <PriceTypeCategory>
    <Description>sample string 1</Description>
    <Id>1</Id>
  </PriceTypeCategory>
  <PriceTypeGroup>
    <Description>sample string 1</Description>
    <Id>1</Id>
  </PriceTypeGroup>
  <ReasonIndicator>true</ReasonIndicator>
  <ShortDescription>sample string 9</ShortDescription>
  <UpdatedBy>sample string 7</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:12:10.9524236-07:00</UpdatedDateTime>
</PriceType>
Change Version Description Contract Old New
Property Added 15.1.0 AliasDescription has been added to PriceType PriceType PriceType.AliasDescription
Parameter Changed 15.0.0 priceTypeId has been marked as required. Required