How to set flow to look for order with pending payment and add specific tag?

Topic summary

Goal: Configure Shopify Flow to identify orders with pending payment and apply a tag.

Key guidance:

  • Check the order’s displayFinancialStatus; pending payments will show as “PENDING”.
  • Use the “Get Order Data” query with a filter like financial_status:PENDING to retrieve relevant orders.

Open points:

  • The timing/trigger for the check is unspecified; you need to decide when the flow should run (e.g., on specific events or schedules).

Status: Partial guidance provided; tagging action and trigger configuration are not finalized, so the solution remains open.

Summarized with AI on January 13. AI used: gpt-5.

Hi there,

How to set flow to look for order with pending payment and add specific tag?

1 Like

You can check displayFinancialStatus and it will show “PENDING”. It’s not clear when you want to do that check, so you might need to think about when to trigger it. You can query orders using Get Order Data with something like (financial_status:PENDING)