Retrieve event ticketing booking by reservation Id

get

/spms/v2/ships/{shipId}/reservations/{reservationId}/bookedEventTicketing

This is to retrieve the Event Ticketing booking that are linked to a Cruise reservation Id

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Event Ticketings
Type: object
Title: Event Ticketings
Event Ticketings
Show Source
Nested Schema : eventTicketBookingDetails
Type: array
Event Tickets Booking Details
Show Source
Example:
[
    {
        "eventTicketBookingId":1,
        "bookableEvent":{
            "id":1,
            "code":"MV01",
            "eventTicketingName":"Movie - Transformer",
            "description":"Transformer"
        },
        "bookingDate":"2009-10-31",
        "bookingTime":"06:59:00",
        "bookingStatus":"Expected",
        "postingStatus":"Posted",
        "seatingPriceCategory":{
            "id":1,
            "priceCategory":"Price Category 1"
        },
        "seatingZone":{
            "id":1,
            "seatCode":"SZ1",
            "zone":"Zone"
        },
        "netPrice":9,
        "grossPrice":10,
        "quantity":1,
        "discountPercentage":10,
        "refundAmount":0,
        "totalAmount":9
    }
]
Nested Schema : eventTicketBookings
Type: object
Event Ticket Bookings
Show Source
Nested Schema : bookableEvent
Type: object
Bookable Event
Show Source
Nested Schema : seatingPriceCategory
Type: object
Seating Price Category
Show Source
Nested Schema : seatingZone
Type: object
Seating Zone
Show Source

400 Response

Bad Request
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Bad Request",
    "detail":"Invalid Booking Status.",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

401 Response

You are not authorized to use this API
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Unauthorized",
    "detail":"Valid token is required to access this resource",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

403 Response

You are forbidden to use this API
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Forbidden",
    "detail":"Access to this resource is forbidden",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

404 Response

Not Found
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Not Found",
    "detail":"Event ticket details not found.",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.5"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

405 Response

This method is not available
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Method Not Supported",
    "detail":"HTTP method not supported for this resource",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.6"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

406 Response

Not Acceptable
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Not Acceptable",
    "detail":"Request a Mime type that is supported for this Resource",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

500 Response

Error occured while processing this request
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "title":"Internal Server Error",
    "details":"Issue fulfilling request. Please retry or contact support",
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source

503 Response

Service Unavailable
Body ()
Root Schema : schema
Match All
Show Source
Example:
{
    "type":"https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4",
    "title":"Service Unavailable",
    "detail":"Service Unavailable.  Try again later"
}
Nested Schema : Error Response
Type: object
Title: Error Response
Error Response returned when encountered error
Show Source
Back to Top