go-shopify icon indicating copy to clipboard operation
go-shopify copied to clipboard

Go client for the Shopify API

Results 12 go-shopify issues
Sort by recently updated
recently updated
newest added

If I wanted to create a storefront access token, why do I have to pass in a `StorefrontAccessToken`? ``` type StorefrontAccessTokenService interface { List(context.Context, interface{}) ([]StorefrontAccessToken, error) Create(context.Context, StorefrontAccessToken) (*StorefrontAccessToken,...

help wanted

Any plan to support abandoned checkouts? It's an important feature for many apps. https://shopify.dev/docs/admin-api/rest/reference/orders/abandoned-checkouts

_From @ckeyes88 on July 17, 2018 16:39_ Currently, string values on any of the data structs have the `omitempty` tag associated with them. Because of this, if I try to...

Hi there, I'm consistently getting the following error whenever I attempt to create or change a variant using this library: ``` Write requests to inventory_quantity and inventory_quantity_adjustment are no longer...

help wanted

**Question** Is there a way by which we can list all the Shopify orders (including `open`, `closed` and `canceled`) using `ListWithPagination` function? **Roadblock** I tried the following code to extract...

When I'm trying to create fulfillment I got error `The required line_items_by_fulfillment_order field is missing error.` with status 400. As I can see on documentation it was change Fulfillment model...

help wanted

Shopify has support for AWS EventBridge([here](https://shopify.dev/apps/webhooks/configuration/eventbridge)), which can be used to integrate webhook delivery. When trying to use the current [Create](https://pkg.go.dev/github.com/bold-commerce/[email protected]+incompatible#WebhookServiceOp.Create) method like this:- ```go resp, err := c.Webhook.Create(goshopify.Webhook{ Address:...

help wanted

I need to have order risk api available in the library https://shopify.dev/docs/api/admin-rest/2022-04/resources/order-risk#get-orders-order-id-risks Is it possible at the moment?

help wanted

_From @sudomake on December 19, 2017 21:1_ We should add order refunds. [https://help.shopify.com/api/reference/refund](https://help.shopify.com/api/reference/refund) _Copied from original issue: getconversio/go-shopify#56_

enhancement
help wanted

Hi All, I'm trying to find all metafields for a Customer that has a specific `namespace` and `key` Basically, this cURL request ``` curl --location --request GET 'https://{{store_domain.com}}/admin/api/2022-01/metafields.json?namespace={{namespace}}&key={{key}}' \ --header...