Packages Test
TXN/Packages/{packageId}/SeatFees?modeOfSaleId={modeOfSaleId}&priceTypeIds={priceTypeIds}&asOfDateTime={asOfDateTime}
Returns price, per seat fees, for each zone and price type for the specified package.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Packages/{packageId}/SeatFees?modeOfSaleId={modeOfSaleId}&priceTypeIds={priceTypeIds}&asOfDateTime={asOfDateTime}

URI Parameters

Parameter Name Data Type Required Notes
packageId integer Y
modeOfSaleId integer Y Required, Must be a valid id from TR_MOS.
priceTypeIds string N A list of valid ids from TR_PRICE_TYPE. Filters the results.
asOfDateTime date N Date for pricing. Defaults to today.

Request Body

None.

No request body.

Response object type : Collection of ProductSeatFee

Response object type Collection of ProductSeatFee has the following properties.
Property Name Data Type Length Required Readonly Notes
Fee SeatFeeSummary
FeeAmount decimal number
Price decimal number
PriceTypeId integer
ZoneId integer
[
  {
    "Fee": {
      "Id": 1,
      "Description": "sample string 2",
      "Category": {
        "Id": 1,
        "Description": "sample string 2"
      }
    },
    "PriceTypeId": 1,
    "ZoneId": 2,
    "Price": 3.0,
    "FeeAmount": 4.0
  },
  {
    "Fee": {
      "Id": 1,
      "Description": "sample string 2",
      "Category": {
        "Id": 1,
        "Description": "sample string 2"
      }
    },
    "PriceTypeId": 1,
    "ZoneId": 2,
    "Price": 3.0,
    "FeeAmount": 4.0
  }
]
<ProductSeatFees xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ProductSeatFee>
    <Fee xmlns:d3p1="http://schemas.datacontract.org/2004/07/Tessitura.Service.Client.Txn">
      <d3p1:Category>
        <Description>sample string 2</Description>
        <Id>1</Id>
      </d3p1:Category>
      <d3p1:Description>sample string 2</d3p1:Description>
      <d3p1:Id>1</d3p1:Id>
    </Fee>
    <FeeAmount>4</FeeAmount>
    <Price>3</Price>
    <PriceTypeId>1</PriceTypeId>
    <ZoneId>2</ZoneId>
  </ProductSeatFee>
  <ProductSeatFee>
    <Fee xmlns:d3p1="http://schemas.datacontract.org/2004/07/Tessitura.Service.Client.Txn">
      <d3p1:Category>
        <Description>sample string 2</Description>
        <Id>1</Id>
      </d3p1:Category>
      <d3p1:Description>sample string 2</d3p1:Description>
      <d3p1:Id>1</d3p1:Id>
    </Fee>
    <FeeAmount>4</FeeAmount>
    <Price>3</Price>
    <PriceTypeId>1</PriceTypeId>
    <ZoneId>2</ZoneId>
  </ProductSeatFee>
</ProductSeatFees>
Change Version Description Contract Old New
Parameter Changed 15.1.18 packageId has been marked as required. Required
Parameter Changed 15.1.18 modeOfSaleId has been marked as required. Required