Hi there, thank you for your response.
I'am using node.js on the backend and had trouble querying for this verb(s). Turns out it's only availbale when you use the order endpoint:
GET /admin/api/2020-10/orders/450789469/events.json
However the offical node.js library does not support this endpoint yet so I had to implement that on my own.
The query itself is quite straight forward:
let params = {
verb: "shipping_label_created_success"
};
const shopify = new ShopifyAPI({
apiVersion: '2020-10',
shopName: url,
accessToken: auth_token,
autoLimit: true
});
let events = await shopify.event.list(orderID, params)
console.log(events);
I hope this helps,
Is there any other api which can provide us the shipping cost in any specific node?. Currently we need to parse this from events.
User | Count |
---|---|
14 | |
8 | |
7 | |
7 | |
6 |