I signed up for a third party marketplace that required 6 pack cases, but my items are listed in Shopify as each. I need to use the same SKU so I can pass the order correctly from Shopify to fulfillment, but need to change the quantity of each line item to its multiple of 6. Is this something that can be accomplished with Flow?
Should be able to do that using this mutation:
https://shopify.dev/docs/api/admin-graphql/2024-01/mutations/orderEditSetQuantity
Don’t we need to run the orderEditBegin before we can run orderEditSetQuantity?
Flow only allows us to run HTTP queries once with no callback.
Flow only allows us to run HTTP queries once with no callback.
The Send HTTP request action can be used multiple times in sequence. What do you mean when you say you can only use this action once without a callback?
If the functionality of the Send HTTP Request action is not sufficient for you and you don’t mind using third-party apps, you can sequentially call the Execute GraphQL request action from the Flow Companion app. This action correctly handles execution errors, whereas with the Send HTTP Request action you are forced to handle errors manually
Corrections - in Send HTTP Request Flow gives control over how you handle 4xx and 5xx errors separately so you can control if they fail or retry. In addition, I’d recommend using Send Admin API request in Flow for any Admin API calls, as it makes it much easier to use and handles error logic for you.


