Session Test
Web/Session/{sessionKey}/Orders/Search?seasonId={seasonId}&renewalsOnly={renewalsOnly}&modeOfSaleId={modeOfSaleId}&perfStartDate={perfStartDate}&perfEndDate={perfEndDate}&deliveryMethodId={deliveryMethodId}&unprintedOnly={unprintedOnly}&includeAffiliations={includeAffiliations}&includeUnfulfilledRollovers={includeUnfulfilledRollovers}
Returns summary details for all orders belonging to the session's authenticated constituent.

Returned orders can be filtered by print status, performance date, season, mode of sale, delivery method, and whether or not an order was created by a rollover.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Session/{sessionKey}/Orders/Search?seasonId={seasonId}&renewalsOnly={renewalsOnly}&modeOfSaleId={modeOfSaleId}&perfStartDate={perfStartDate}&perfEndDate={perfEndDate}&deliveryMethodId={deliveryMethodId}&unprintedOnly={unprintedOnly}&includeAffiliations={includeAffiliations}&includeUnfulfilledRollovers={includeUnfulfilledRollovers}

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y
seasonId integer N
renewalsOnly boolean N
modeOfSaleId integer N
perfStartDate date N
perfEndDate date N
deliveryMethodId integer N
unprintedOnly boolean N
includeAffiliations boolean N Include all of the constituent's affiliates in the results (default: false).
includeUnfulfilledRollovers boolean N Include unfulfilled rollovers in the results (default: true).

Request Body

None.

No request body.

Response object type : Collection of WebOrderSearchResponse

Response object type Collection of WebOrderSearchResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
ConstituentId integer
CreateDate date
IsOkToPrint boolean
IsRolloverOrder boolean
LockedBySessionKey string
LockedInBatch integer
ModeOfSaleId integer
NumberOfUnprintedSeats integer
OrderDate date
OrderId integer
TotalDueAmount decimal number
TotalPaidAmount decimal number
[
  {
    "ConstituentId": 1,
    "OrderId": 2,
    "OrderDate": "2025-04-24T08:59:47.2227165-07:00",
    "ModeOfSaleId": 3,
    "TotalDueAmount": 4.0,
    "TotalPaidAmount": 5.0,
    "LockedInBatch": 6,
    "IsRolloverOrder": true,
    "CreateDate": "2025-04-24T08:59:47.2227165-07:00",
    "LockedBySessionKey": "sample string 8",
    "IsOkToPrint": true,
    "NumberOfUnprintedSeats": 10
  },
  {
    "ConstituentId": 1,
    "OrderId": 2,
    "OrderDate": "2025-04-24T08:59:47.2227165-07:00",
    "ModeOfSaleId": 3,
    "TotalDueAmount": 4.0,
    "TotalPaidAmount": 5.0,
    "LockedInBatch": 6,
    "IsRolloverOrder": true,
    "CreateDate": "2025-04-24T08:59:47.2227165-07:00",
    "LockedBySessionKey": "sample string 8",
    "IsOkToPrint": true,
    "NumberOfUnprintedSeats": 10
  }
]
<WebOrderSearchResponses xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <WebOrderSearchResponse>
    <ConstituentId>1</ConstituentId>
    <CreateDate>2025-04-24T08:59:47.2227165-07:00</CreateDate>
    <IsOkToPrint>true</IsOkToPrint>
    <IsRolloverOrder>true</IsRolloverOrder>
    <LockedBySessionKey>sample string 8</LockedBySessionKey>
    <LockedInBatch>6</LockedInBatch>
    <ModeOfSaleId>3</ModeOfSaleId>
    <NumberOfUnprintedSeats>10</NumberOfUnprintedSeats>
    <OrderDate>2025-04-24T08:59:47.2227165-07:00</OrderDate>
    <OrderId>2</OrderId>
    <TotalDueAmount>4</TotalDueAmount>
    <TotalPaidAmount>5</TotalPaidAmount>
  </WebOrderSearchResponse>
  <WebOrderSearchResponse>
    <ConstituentId>1</ConstituentId>
    <CreateDate>2025-04-24T08:59:47.2227165-07:00</CreateDate>
    <IsOkToPrint>true</IsOkToPrint>
    <IsRolloverOrder>true</IsRolloverOrder>
    <LockedBySessionKey>sample string 8</LockedBySessionKey>
    <LockedInBatch>6</LockedInBatch>
    <ModeOfSaleId>3</ModeOfSaleId>
    <NumberOfUnprintedSeats>10</NumberOfUnprintedSeats>
    <OrderDate>2025-04-24T08:59:47.2227165-07:00</OrderDate>
    <OrderId>2</OrderId>
    <TotalDueAmount>4</TotalDueAmount>
    <TotalPaidAmount>5</TotalPaidAmount>
  </WebOrderSearchResponse>
</WebOrderSearchResponses>
Change Version Description Contract Old New
Parameter Added 15.1.2 New parameter added includeUnfulfilledRollovers includeUnfulfilledRollovers
Parameter Added 15.1.1 New parameter added includeAffiliations includeAffiliations
Parameter Changed 15.0.0 sessionKey has been marked as required. Required