No content to show
User Activity
Sort of! There is still no exchange webhook, but it's been tightly integrated with returns, so now you can catch it on a "RETURNS_CLOSE" webhook. You can tell if it's an exchange by checking for "exchangeLineItems" in the return. At least, that's how...
+1 for this. I have an app that receives webhooks for paid, fulfilled, and refunded orders, but when there's an exchange it messes everything up. A fulfilled order generates an invoice in my app. When an exchange happens, the refund generates an invo...
10-09-2024
I've been getting deprecation warnings about using OrderAdjustment.kind to calculate shipping refunds with my Shopify app. Investigating the warnings led me to these two changelog entries: Exposing the order adjustments connection on a RefundRefundin...
03-29-2024
When I call the REST API's orders/count endpoint, I can't filter by more than one financial_status. For example: https://{store_name}.myshopify.com/admin/api/2024-01/orders/count.json?financial_status=refunded,partially_refunded This query should...
Still having this issue--I actually found this thread while Googling it again Can anyone help out here?
Hello! tl;dr: my Orders GraphQL query works just fine when sorting by CREATED_AT, but freaks out and won't return the requested number of orders per page when sorting by TOTAL_PRICE or ORDER_NUMBER, instead returning just a few or 0. I have a Next.js...