Exemple #1
0
    public static SqlInt32 Shop_DeleteStoreMetafield(string StoreName, string APIKey, string Password, long MetafieldID)
    {
        ShopifyClient sp = new ShopifyClient(StoreName, APIKey, Password);
        int success = sp.DeleteStoreMetafield(MetafieldID);

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

        return success;
    }