ShopifySharp
ShopifySharp copied to clipboard
ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
I am trying to download all products from my store with limited fields and pagination. But even when I am using the `fields` property to see the comma-separated fields name....
Where POS is involved where in terms of ShopifySharp would a cash transaction end up recorded?
An item cannot be active at more than one location if one of them is a fulfillment service location.
Recently in the past few days we started getting this error (422 Unprocessable Entity) errors[0]: An item cannot be active at more than one location if one of them is...
I'm fetching the existing ProductVariant, and updating the quantity/price. The following code (stripped to just the essentials): ``` ProductVariantService ProductVariantService = new ProductVariantService(ShopifyStoreUrl, ShopifyAdminPassword); ListResult tempProductVariants = await ProductVariantService.ListAsync(ProductShopifyId); List...
https://{mystore}.myshopify.com/admin/api/2020-10/checkouts/{token}.json seems to have changed to: https://{mystore}.myshopify.com/admin/api/2020-10/carts/{token}.json
I'm unable to get metafields on a product_image using `ShopifySharp`. Doing so will produce a `404 Not Found`: the request is not following the [Shopify Documentation](https://shopify.dev/docs/admin-api/rest/reference/metafield) ## Code ``` csharp...
We are getting an error while calling shopifysharp GraphService, we also use retry policy and it still keep throwing this error. what could be the reason behind this? We have...
What is the shopify admin api version referenced in shopifysharp version v4.19.2?
Using a sample store with a product catalog from here ("jewelry.csv"): https://github.com/shopifypartners/product-csvs If I do this: ``` await productService.UpdateAsync(product.Id.Value, new Product() { Title = "New product title" }); ``` It...
Attempted to use the accepts_marketing_updated_at datetime to filter customers from Shopify and it doesn't appear to be added as a property.