
i created a middleware between business central and shopify and it works perfectly i can create customers and products in both way but the problem is creating sales order, i need to get the customers i added from business central to shopify and assign the relative information of the customer to sales order, but i cant get the customer id in business central, I only have the name, is there any way I can get the customer using Name, I tried setting filter using name but it did not work.
Example:
I created order in Shopify POS this is the order object https://shopify.dev/api/admin-rest/2021-10/resources/order#resource_object
when i get this object in AL I cant get the customer id , and when i create sales order i use this code
You can lookup BC customer by setrange
Cust.SetRange(Name,ShopifyName);
If Cust.FindFirst() then
..your code
But I'd store Shopify customer id in BC instead as looking up names is not the best practise