You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. In order to access a shop's data, apps need an access token from that specific shop. We need to authenticate with that shop using OAuth, which we can start in the following way:
@@ -160,6 +161,12 @@ product.destroy()
160
161
# Delete the resource from the remote server (i.e. Shopify)
161
162
```
162
163
164
+
Here is another example to retrieve a list of open orders using certain parameters:
Some resources such as`Fulfillment` are prefixed by a parent resource in the Shopify API (e.g. `orders/450789469/fulfillments/255858046`). In order to interact with these resources, you must specify the identifier of the parent resource in your request.
0 commit comments