
Hello experts,
lately I have come across the wishlist functionality in D365 Commerce. I have learned, that when you use the D365 Commerce out-of-the-box webshop, you are able to create wishlists online, which can be viewed and used in the POS app.
Is there a possibility to also use this wishlist feature with 3rd party webshops via API or so?
Can you manage the wishlists also from the Commerce HQ? I am sure the data is stored there somehow, but is there a UI to manage the lists?
Is there also the possibility to fill/create wishlists the other way round? Meaning: create a wishlist in store, which the customer can then later also use online or when he/she comes to the store next time?
Thank you very much for your answers in advance!
Hi,
I believe you can use this feature with third party app as well.
You can explore the commence/retail server metadata and you can get following data model and actions
<EntityType Name="CommerceList">
<EnumType Name="CommerceListType">
<Member Name="None" Value="0"/>
<Member Name="WishList" Value="1"/>
</EnumType>
You can see all required action like - AddLines, UpdateLines, RemoveLines, MoveLines
<Action Name="AddLines" IsBound="true">
<Parameter Name="bindingParameter" Type="Microsoft.Dynamics.Commerce.Runtime.DataModel.CommerceList"/>
<Parameter Name="commerceListLines" Type="Collection(Microsoft.Dynamics.Commerce.Runtime.DataModel.CommerceListLine)"/>
<ReturnType Type="Microsoft.Dynamics.Commerce.Runtime.DataModel.CommerceList"/>
</Action>
Table in channel database : crt.WISHLIST
I don't think you can manage wish list from Commerce HQ because I believe data will be store in channel database only.
If the channel database for those online store and POS store is same you can see the Wishlist on POS app which is created from eCommerce (but I am not able to verify it).
May below posts helps you -
community.dynamics.com/.../wish-list-in-online-store-and-modern-pos
docs.microsoft.com/.../quick-tour-account-management