Session Test
Web/Session/{sessionKey}/DeliveryMethods
Returns the available delivery methods for the session

Delivery method availability is based on the mode of sale. NOTE: The Hold at Box Office delivery method(ID -1) is always returned. Web code must be used to filter out this delivery method as needed.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Session/{sessionKey}/DeliveryMethods

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y

Request Body

None.

No request body.

Response object type : Collection of WebDeliveryMethod

Response object type Collection of WebDeliveryMethod has the following properties.
Property Name Data Type Length Required Readonly Notes
Default string Indicates that this delivery method is the default for the mode of sale.
Description string
Id integer
Inactive boolean Indicates if this delivery method is inactive.
PrintAtHome string Indicates that this delivery method is setup for Print at Home.
RequireAddress string Indicates that this delivery method requires an address on the constituent account.
Restricted string Indicates if there are restrictions on this delivery method. The possible flag values are: N (no restrictions), T (time restrictions), or F (foreign country restrictions).
[
  {
    "Id": 1,
    "Description": "sample string 2",
    "Restricted": "sample string 3",
    "Default": "sample string 4",
    "PrintAtHome": "sample string 5",
    "RequireAddress": "sample string 6",
    "Inactive": true
  },
  {
    "Id": 1,
    "Description": "sample string 2",
    "Restricted": "sample string 3",
    "Default": "sample string 4",
    "PrintAtHome": "sample string 5",
    "RequireAddress": "sample string 6",
    "Inactive": true
  }
]
<WebDeliveryMethods xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <WebDeliveryMethod>
    <Default>sample string 4</Default>
    <Description>sample string 2</Description>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <PrintAtHome>sample string 5</PrintAtHome>
    <RequireAddress>sample string 6</RequireAddress>
    <Restricted>sample string 3</Restricted>
  </WebDeliveryMethod>
  <WebDeliveryMethod>
    <Default>sample string 4</Default>
    <Description>sample string 2</Description>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <PrintAtHome>sample string 5</PrintAtHome>
    <RequireAddress>sample string 6</RequireAddress>
    <Restricted>sample string 3</Restricted>
  </WebDeliveryMethod>
</WebDeliveryMethods>
Change Version Description Contract Old New
Parameter Changed 15.0.0 sessionKey has been marked as required. Required