GET api/Event/GetCurrentCart?userId={userId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CartResponseModelName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
AppUserId | string |
None. |
|
IsPaid | boolean |
None. |
|
UniqueId | globally unique identifier |
None. |
|
CartItems | Collection of CartItemResponseModel |
None. |
|
Result | ResponseResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "3953aa65-9b8a-486a-a233-0ea74702eeca", "AppUserId": "sample string 2", "IsPaid": true, "UniqueId": "efd1f38d-d98e-44d9-9dad-83fd6ce55a27", "CartItems": [ { "Id": "60f9258d-dcd3-44c8-9302-4bd96bb9ba45", "EventId": "ab0f8076-ae57-4046-bafa-bee8a8f98363", "ProductId": "9d0ce07a-d8cd-4d19-a14f-1ee7b358a6c5", "TicketTypeId": "a280968a-3dbe-4dc2-b2dd-933aeca7e12f", "UnitBasePrice": 2.0, "DeliveryCost": 3.0, "ClassifiedItemId": "d0df3d7b-f4c6-4b3b-997d-c5a40f360ef6", "FirstName": "sample string 4", "LastName": "sample string 5", "EmailAddresss": "sample string 6", "Company": "sample string 7", "DietaryRequirements": "sample string 8", "DietaryRequirementsOther": "sample string 9", "AdditionalEventInformation": "sample string 10", "ShippingAddress": "sample string 11", "Mobile": "sample string 12", "SegmentId": "70aa9473-80d2-417f-ae2e-89cdba9e8458", "SortOrder": 13 }, { "Id": "60f9258d-dcd3-44c8-9302-4bd96bb9ba45", "EventId": "ab0f8076-ae57-4046-bafa-bee8a8f98363", "ProductId": "9d0ce07a-d8cd-4d19-a14f-1ee7b358a6c5", "TicketTypeId": "a280968a-3dbe-4dc2-b2dd-933aeca7e12f", "UnitBasePrice": 2.0, "DeliveryCost": 3.0, "ClassifiedItemId": "d0df3d7b-f4c6-4b3b-997d-c5a40f360ef6", "FirstName": "sample string 4", "LastName": "sample string 5", "EmailAddresss": "sample string 6", "Company": "sample string 7", "DietaryRequirements": "sample string 8", "DietaryRequirementsOther": "sample string 9", "AdditionalEventInformation": "sample string 10", "ShippingAddress": "sample string 11", "Mobile": "sample string 12", "SegmentId": "70aa9473-80d2-417f-ae2e-89cdba9e8458", "SortOrder": 13 } ], "Result": { "Success": true, "Message": "sample string 2", "Errors": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ] } }
application/xml, text/xml
Sample:
<CartResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response"> <Result> <Errors> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> </Errors> <Message>sample string 2</Message> <Success>true</Success> </Result> <AppUserId>sample string 2</AppUserId> <CartItems> <CartItemResponseModel> <AdditionalEventInformation>sample string 10</AdditionalEventInformation> <ClassifiedItemId>d0df3d7b-f4c6-4b3b-997d-c5a40f360ef6</ClassifiedItemId> <Company>sample string 7</Company> <DeliveryCost>3</DeliveryCost> <DietaryRequirements>sample string 8</DietaryRequirements> <DietaryRequirementsOther>sample string 9</DietaryRequirementsOther> <EmailAddresss>sample string 6</EmailAddresss> <EventId>ab0f8076-ae57-4046-bafa-bee8a8f98363</EventId> <FirstName>sample string 4</FirstName> <Id>60f9258d-dcd3-44c8-9302-4bd96bb9ba45</Id> <LastName>sample string 5</LastName> <Mobile>sample string 12</Mobile> <ProductId>9d0ce07a-d8cd-4d19-a14f-1ee7b358a6c5</ProductId> <SegmentId>70aa9473-80d2-417f-ae2e-89cdba9e8458</SegmentId> <ShippingAddress>sample string 11</ShippingAddress> <SortOrder>13</SortOrder> <TicketTypeId>a280968a-3dbe-4dc2-b2dd-933aeca7e12f</TicketTypeId> <UnitBasePrice>2</UnitBasePrice> </CartItemResponseModel> <CartItemResponseModel> <AdditionalEventInformation>sample string 10</AdditionalEventInformation> <ClassifiedItemId>d0df3d7b-f4c6-4b3b-997d-c5a40f360ef6</ClassifiedItemId> <Company>sample string 7</Company> <DeliveryCost>3</DeliveryCost> <DietaryRequirements>sample string 8</DietaryRequirements> <DietaryRequirementsOther>sample string 9</DietaryRequirementsOther> <EmailAddresss>sample string 6</EmailAddresss> <EventId>ab0f8076-ae57-4046-bafa-bee8a8f98363</EventId> <FirstName>sample string 4</FirstName> <Id>60f9258d-dcd3-44c8-9302-4bd96bb9ba45</Id> <LastName>sample string 5</LastName> <Mobile>sample string 12</Mobile> <ProductId>9d0ce07a-d8cd-4d19-a14f-1ee7b358a6c5</ProductId> <SegmentId>70aa9473-80d2-417f-ae2e-89cdba9e8458</SegmentId> <ShippingAddress>sample string 11</ShippingAddress> <SortOrder>13</SortOrder> <TicketTypeId>a280968a-3dbe-4dc2-b2dd-933aeca7e12f</TicketTypeId> <UnitBasePrice>2</UnitBasePrice> </CartItemResponseModel> </CartItems> <Id>3953aa65-9b8a-486a-a233-0ea74702eeca</Id> <IsPaid>true</IsPaid> <UniqueId>efd1f38d-d98e-44d9-9dad-83fd6ce55a27</UniqueId> </CartResponseModel>