GET api/inventory/Wishlist/GetIneligibleItems?wishlistID={wishlistID}&onlineOrderID={onlineOrderID}

Return the InventoryID's that exist in a wishlist but cannot be added to a specific OnlineOrder, usually due to territory restrictions.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
wishlistID

integer

Required

onlineOrderID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of integer

Response Formats

application/xml, text/xml

Sample:
<ListOfInt32>
  <Int32>1</Int32>
  <Int32>2</Int32>
</ListOfInt32>

application/json, text/json

Sample:
[
  1,
  2
]