Bookings Test
EventsManagement/Bookings/Summary/{bookingId}
Get a summary for a single Booking.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/EventsManagement/Bookings/Summary/{bookingId}

URI Parameters

Parameter Name Data Type Required Notes
bookingId integer N

Request Body

None.

No request body.

Response object type : BookingSummary

Response object type BookingSummary has the following properties.
Property Name Data Type Length Required Readonly Notes
Category BookingCategorySummary N
Description string N
EditIndicator boolean N
Id integer N
{
  "Id": 1,
  "Description": "sample string 1",
  "Category": {
    "Id": 1,
    "Description": "sample string 1",
    "Inactive": true,
    "EditIndicator": true
  },
  "EditIndicator": true
}
<BookingSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Category>
    <Description>sample string 1</Description>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Inactive>true</Inactive>
  </Category>
  <Description>sample string 1</Description>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
</BookingSummary>

No entries in change log for this operation.