Cart Test
Web/Cart/{sessionKey}/LineItems/{lineItemId}/SpecialRequest
Updates Special Request info on a line item
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/LineItems/{lineItemId}/SpecialRequest

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y
lineItemId integer Y The lineitem ID to update the special request info for.

Request Body

Request object type : SpecialRequest

Request object type SpecialRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
AisleSeat string The request for Aisle seats, one of (L)eft, (R)ight, (A)ll, (N)one.
Category EntitySummary The id of the Line item category from TR_LINEITEM_CATEGORY.
ContiguousSeats integer The number of contigious seats requested.
EndingRow string The ending row for the range of rows requested.
EndingSeat string Tne ending seat number for the range of seats requested.
EndPrice decimal number The ending price of the price range requested.
HoldCode integer The id of the hold code to reserve.
LeaveSingleSeats boolean If true, allows best seating to leave single seats in the seat map.
NoStairs boolean If true, requests no stairs.
Notes string Line item notes.
StartingRow string The starting row for the range of rows requested.
StartingSeat string The starting seat number for the range of seats requested.
StartPrice decimal number The starting price of the price range requested.
WheelchairSeats integer The number of wheelchair seats requested.
{
  "StartPrice": 1.0,
  "EndPrice": 1.0,
  "WheelchairSeats": 1,
  "AisleSeat": "sample string 1",
  "ContiguousSeats": 1,
  "StartingRow": "sample string 2",
  "EndingRow": "sample string 3",
  "StartingSeat": "sample string 4",
  "EndingSeat": "sample string 5",
  "HoldCode": 1,
  "NoStairs": true,
  "LeaveSingleSeats": true,
  "Notes": "sample string 6",
  "Category": {
    "Id": 1,
    "Description": "sample string 2"
  }
}
<SpecialRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <AisleSeat>sample string 1</AisleSeat>
  <Category>
    <Description>sample string 2</Description>
    <Id>1</Id>
  </Category>
  <ContiguousSeats>1</ContiguousSeats>
  <EndPrice>1</EndPrice>
  <EndingRow>sample string 3</EndingRow>
  <EndingSeat>sample string 5</EndingSeat>
  <HoldCode>1</HoldCode>
  <LeaveSingleSeats>true</LeaveSingleSeats>
  <NoStairs>true</NoStairs>
  <Notes>sample string 6</Notes>
  <StartPrice>1</StartPrice>
  <StartingRow>sample string 2</StartingRow>
  <StartingSeat>sample string 4</StartingSeat>
  <WheelchairSeats>1</WheelchairSeats>
</SpecialRequest>

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

Change Version Description Contract Old New
Parameter Changed 15.0.0 sessionKey has been marked as required. Required