Cart Test
Web/Cart/{sessionKey}/Bookings
Attach an existing booking to the cart.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/Bookings

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y

Request Body

Request object type : AddBookingRequest

Request object type AddBookingRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
BookingId integer The id of a valid, saved booking (EventsManagement/Bookings).
{
  "BookingId": 1
}
<AddBookingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <BookingId>1</BookingId>
</AddBookingRequest>

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