POST api/SeatPlan/Preview
Request Information
URI Parameters
None.
Body Parameters
OrderName | Description | Type | Additional information |
---|---|---|---|
AddReservationCosts | boolean |
None. |
|
OrderedTickets | Dictionary of globally unique identifier [key] and integer [value] |
None. |
|
DeliveryTypeRowGuid | globally unique identifier |
None. |
|
Promotions | Collection of Promotion |
None. |
|
ShowRowGuid | globally unique identifier |
None. |
|
TotalWithDiscount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "AddReservationCosts": true, "OrderedTickets": { "5f1d0f51-4d85-47ad-a08f-8cd3d35bc524": 2, "52e158db-b133-46aa-9a29-175f2c2ad35d": 4 }, "DeliveryTypeRowGuid": "dade96db-4d38-4bc5-8a86-b9b818368896", "Promotions": [ { "RowGuid": "9ac7ad57-000b-4f79-8552-137ff33c2941", "Name": "sample string 2", "CouponCode": "sample string 3", "DiscountOnTotalOrderPrice": 4.0 }, { "RowGuid": "9ac7ad57-000b-4f79-8552-137ff33c2941", "Name": "sample string 2", "CouponCode": "sample string 3", "DiscountOnTotalOrderPrice": 4.0 } ], "ShowRowGuid": "8d014c3b-cd65-47fe-9674-50ea0965c964", "TotalWithDiscount": 4.0 }
application/xml, text/xml
Sample:
<Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RoodFluweel.Api.Models"> <AddReservationCosts>true</AddReservationCosts> <DeliveryTypeRowGuid>dade96db-4d38-4bc5-8a86-b9b818368896</DeliveryTypeRowGuid> <OrderedTickets xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfguidint> <d2p1:Key>5f1d0f51-4d85-47ad-a08f-8cd3d35bc524</d2p1:Key> <d2p1:Value>2</d2p1:Value> </d2p1:KeyValueOfguidint> <d2p1:KeyValueOfguidint> <d2p1:Key>52e158db-b133-46aa-9a29-175f2c2ad35d</d2p1:Key> <d2p1:Value>4</d2p1:Value> </d2p1:KeyValueOfguidint> </OrderedTickets> <Promotions> <Promotion> <CouponCode>sample string 3</CouponCode> <DiscountOnTotalOrderPrice>4</DiscountOnTotalOrderPrice> <Name>sample string 2</Name> <RowGuid>9ac7ad57-000b-4f79-8552-137ff33c2941</RowGuid> </Promotion> <Promotion> <CouponCode>sample string 3</CouponCode> <DiscountOnTotalOrderPrice>4</DiscountOnTotalOrderPrice> <Name>sample string 2</Name> <RowGuid>9ac7ad57-000b-4f79-8552-137ff33c2941</RowGuid> </Promotion> </Promotions> <ShowRowGuid>8d014c3b-cd65-47fe-9674-50ea0965c964</ShowRowGuid> <TotalWithDiscount>4</TotalWithDiscount> </Order>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OrderResultName | Description | Type | Additional information |
---|---|---|---|
UsedPromotions | Collection of Promotion |
None. |
|
UnUsedPromotions | Collection of Promotion |
None. |
|
TotalPrice | decimal number |
None. |
|
ResultCode | OrderResultCode |
None. |
|
Seats | Collection of Seat |
None. |
|
ShowGuid | globally unique identifier |
None. |
|
SeatPlanImageUri | URI |
None. |
|
OrderRowGuid | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.