Exemple #1
0
    public static void Shop_UpdateFulfillment(string StoreName, string APIKey, string Password, long OrderID, long FulfillmentID, string JsonString, out SqlString Status )
    {
        ShopifyClient sp = new ShopifyClient(StoreName, APIKey, Password);
        Status = sp.UpdateFulfillment(OrderID, FulfillmentID, JsonString);

        if (!String.IsNullOrEmpty(sp.ErrMsg))
            RaiseErr(sp.ErrMsg);
    }