GET api/Order/GetWishListCartItems?providerID={providerID}&shopperID={shopperID}&wishListID={wishListID}&moveTocart={moveTocart}&ipAddress={ipAddress}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerID

integer

Required

shopperID

integer

Required

wishListID

integer

Required

moveTocart

integer

Default value is 0

ipAddress

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of WishListViewModel
NameDescriptionTypeAdditional information
WishListID

integer

None.

OrderID

integer

None.

SCProductID

integer

None.

SKUCode

string

None.

Name

string

None.

Code

string

None.

SKUAdditionalDescription

string

None.

SmallImages

string

None.

Price

decimal number

None.

DealPrice

decimal number

None.

BrandName

string

None.

CurrencyCode

string

None.

ConversitionRate

decimal number

None.

ImagePath

string

None.

OriginalPriceDisplay

string

None.

DealPriceDisplay

string

None.

SendPriceDropAlert

boolean

None.

SendStockAlert

boolean

None.

SendDiscountAlert

boolean

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "WishListID": 1,
    "OrderID": 1,
    "SCProductID": 2,
    "SKUCode": "sample string 3",
    "Name": "sample string 4",
    "Code": "sample string 5",
    "SKUAdditionalDescription": "sample string 6",
    "SmallImages": "sample string 7",
    "Price": 8.1,
    "DealPrice": 1.1,
    "BrandName": "sample string 9",
    "CurrencyCode": "sample string 10",
    "ConversitionRate": 11.1,
    "ImagePath": "sample string 7",
    "OriginalPriceDisplay": "89.91",
    "DealPriceDisplay": "12.21",
    "SendPriceDropAlert": true,
    "SendStockAlert": true,
    "SendDiscountAlert": true
  },
  {
    "WishListID": 1,
    "OrderID": 1,
    "SCProductID": 2,
    "SKUCode": "sample string 3",
    "Name": "sample string 4",
    "Code": "sample string 5",
    "SKUAdditionalDescription": "sample string 6",
    "SmallImages": "sample string 7",
    "Price": 8.1,
    "DealPrice": 1.1,
    "BrandName": "sample string 9",
    "CurrencyCode": "sample string 10",
    "ConversitionRate": 11.1,
    "ImagePath": "sample string 7",
    "OriginalPriceDisplay": "89.91",
    "DealPriceDisplay": "12.21",
    "SendPriceDropAlert": true,
    "SendStockAlert": true,
    "SendDiscountAlert": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfWishListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Orders">
  <WishListViewModel>
    <BrandName>sample string 9</BrandName>
    <Code>sample string 5</Code>
    <ConversitionRate>11.1</ConversitionRate>
    <CurrencyCode>sample string 10</CurrencyCode>
    <DealPrice>1.1</DealPrice>
    <Name>sample string 4</Name>
    <OrderID>1</OrderID>
    <Price>8.1</Price>
    <SCProductID>2</SCProductID>
    <SKUAdditionalDescription>sample string 6</SKUAdditionalDescription>
    <SKUCode>sample string 3</SKUCode>
    <SendDiscountAlert>true</SendDiscountAlert>
    <SendPriceDropAlert>true</SendPriceDropAlert>
    <SendStockAlert>true</SendStockAlert>
    <SmallImages>sample string 7</SmallImages>
    <WishListID>1</WishListID>
  </WishListViewModel>
  <WishListViewModel>
    <BrandName>sample string 9</BrandName>
    <Code>sample string 5</Code>
    <ConversitionRate>11.1</ConversitionRate>
    <CurrencyCode>sample string 10</CurrencyCode>
    <DealPrice>1.1</DealPrice>
    <Name>sample string 4</Name>
    <OrderID>1</OrderID>
    <Price>8.1</Price>
    <SCProductID>2</SCProductID>
    <SKUAdditionalDescription>sample string 6</SKUAdditionalDescription>
    <SKUCode>sample string 3</SKUCode>
    <SendDiscountAlert>true</SendDiscountAlert>
    <SendPriceDropAlert>true</SendPriceDropAlert>
    <SendStockAlert>true</SendStockAlert>
    <SmallImages>sample string 7</SmallImages>
    <WishListID>1</WishListID>
  </WishListViewModel>
</ArrayOfWishListViewModel>