Help with 'Transfer to pickup Location'

I’m currently stuck trying to set up a new Flow and haven’t been able to find an answer anywhere. I’ve included some context below.

To support local pickup—even at locations that don’t regularly stock the product—I enabled “transfers” at all locations.

  • Everything is working as expected—when a customer selects a pickup location at checkout that doesn’t have the item in stock, Shopify displays a “Transfer to pickup location” button in the Order Admin UI.
  • Now I’m trying to handle that transfer step programmatically through Flow.
  • Here’s what my Flow does:
  1. Checks if any fulfillment orders have deliveryMethodType set to pick_up.
  2. Get location data by looking up the location where the name matches the order’s shipping line title (used later in the flow).
  3. Loops through each fulfillment order.
    Check if the fulfillment orders assigned location name is not equal to the orders shipping line title. If the assigned location name doesn’t match the orders shipping line title, I know the fulfillment order needs to move.
  4. Send Admin API request step with ‘inventoryActivate’ mutation
    Before moving the fulfillment order, I need to activate inventory at the destination location, since the transfer fails if the item isn’t already stocked.
  5. Send admin API Request with ‘inventoryAdjustQuantities’ mutation
    Now that the inventory items are stocked at the destination location, I can set the inventory quantities.
  6. Fulfillment Order Move
    Since I handle the process of stocking the items at the destination location, then the fulfillment order move action works as expected.

This is the inventoryActivate mutation:

[
{% for lineItems_item in fulfillmentOrdersForeachitem.lineItems %}
{
“inventoryItemId”: {{ lineItems_item.inventoryItemId | json }},
“inventoryItemUpdates”: [
{
“locationId”: {% for getLocationData_item in getLocationData %}{{ getLocationData_item.id | json }}{% endfor %},
“activate”: true
}
]
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]

This is the inventoryAdjustQuantities mutation:

{
“input”: {
“reason”: “movement_created”,
“name”: “available”,
“changes”: [
{% for lineItem in fulfillmentOrdersForeachitem.lineItems %}
{
“delta”: -{% for lineItems_item in fulfillmentOrdersForeachitem.lineItems %}{{ lineItems_item.totalQuantity }}{% endfor %},
“inventoryItemId”: “{{ lineItem.inventoryItemId | strip_newlines | strip }}”,
“locationId”: “{{ fulfillmentOrdersForeachitem.assignedLocation.location.id | strip_newlines | strip }}”
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]
}
}

When I run the Flow, I’m getting this:

Exception: [ { “inventoryItemId”: “gid://shopify/InventoryItem/44079696740418”, “inventoryItemUpdates”: [{ “locationId”: “gid://shopify/Location/68473028674”, “activate”: true }] }, { “inventoryItemId”: “gid://shopify/InventoryItem/44079662235714”, “inventoryItemUpdates”: [{ “locationId”: “gid://shopify/Location/68473028674”, “activate”: true }] } ]

Mutation had errors: “Variable $inventoryItemId of type ID! was provided invalid value”, “Variable $locationId of type ID! was provided invalid value”

At this point, I’m not sure if the issue is the way I’m formatting the mutation, or if inventoryActivate and inventoryAdjustQuantities doesn’t support activating multiple inventory items in a single call.

Any ideas or suggestions would be hugely appreciated.

Hey @PS_Dev,

it would be very helpful if you could provide your workflows .flow file to better reproduce the issue.

Kevin :hatching_chick:

@Kevin_Sieger
Thanks for your reply. See attached link - let me know if you can access the file.

Flow File

Thanks in advance,
Dave

Hey @PS_Dev,

sadly you cant provide the inventoryActivate mutation with multiple inputs within flow like you did try to here:

As you currently can’t nest multiple for-each actions within flow, you should find a way to “flatten” your values beforehand.

I often approach this by using the “run code” action to sort out which values I need and then run the admin api request actions using the “run code” actions return values.

If you’re still feeling a little lost, I can offer you to build a little proof-of-concept using run code.

Hope this helps,

Kevin :hatching_chick:

@Kevin_Sieger
Thanks for the insight. I came to the same conclusion this weekend.

I inputted this into the ‘send admin api request’ step:
[
{
“inventoryItemId”: “gid://shopify/InventoryItem/44079662235714”,
“locationId”: “gid://shopify/Location/68473028674”,
“available”: 1,
“inventoryLevel”: {
“id”: null,
“quantities”: {
“names”: [“available”],
“name”: null,
“quantity”: null
}
}
},
{
“inventoryItemId”: “gid://shopify/InventoryItem/44079696740418”,
“locationId”: “gid://shopify/Location/68473028674”,
“available”: 1,
“inventoryLevel”: {
“id”: null,
“quantities”: {
“names”: [“available”],
“name”: null,
“quantity”: null
}
}
}
]

And it errors.

Then I inputted this as the body in the ‘Send Http Request’ action step:
{
“query”: “mutation ActivateInventoryItem {\n item1: inventoryActivate(\n inventoryItemId: "gid://shopify/InventoryItem/44079662235714",\n locationId: "gid://shopify/Location/68473028674",\n available: 1\n ) {\n inventoryLevel {\n id\n quantities(names: ["available"]) {\n name\n quantity\n }\n }\n }\n item2: inventoryActivate(\n inventoryItemId: "gid://shopify/InventoryItem/44079696740418",\n locationId: "gid://shopify/Location/68473028674",\n available: 1\n ) {\n inventoryLevel {\n id\n quantities(names: ["available"]) {\n name\n quantity\n }\n }\n }\n}”
}

And it works just fine.

I will continue to use the Send HTTP Request action for now.

I appreciate your input!

Thanks,
Dave

1 Like

If the future please don’t post both here and on the shopify merchant community as it results in wasted effort.

@Kevin_Sieger
I used the “Run Code” step to output a list of line items that need to be moved to the destination location, and then running the “For Each” loop on that was straightforward—no issues with the inventoryActivate mutation.

For anyone interested, here’s the Flow file.

@paul_n
Quick question—why doesn’t Shopify handle this when creating a fulfillment order? Is this intentional?

Here’s why I ask:

  • If a merchant is using a platform like ShipStation, which imports new orders almost instantly via Shopify’s webhooks, any changes made to fulfillment orders afterward aren’t captured.
  • ShipStation recently added support for mapping shipments based on fulfillment orders, which helps reduce the manual work of aligning orders with routing rules in Shopify.
  • In my case, I have a Flow that sends an HTTP request to a Power Automate endpoint to run some ETL logic and generate a file for importing into our ERP system. If the fulfillment orders aren’t set properly before that step, the inventory data sent to the ERP ends up being inaccurate.

Just a few examples to show why having the fulfillment orders properly set up up-front is important.

Appreciate any insights you can share!

Thanks,
Dave

I don’t know but can ask folks that manage the fulfillment side of things.

1 Like

The answer I heard is that this is intentional currently. There’s a pretty complicated dance happening between a fulfillment order being assigned to something that has inventory vs. the transfer that needs to happen to move the fulfillment order to a pickup location. There’s more coming here via API but it’s not fully baked yet. InventoryTransfer - GraphQL Admin

Thanks for the response. I’ll keep following for more updates.