Shopify Find Order by Order Number

This action searches for Shopify orders by their order number and returns whether any were found, along with the matching orders and the primary order object.


Inputs

NameTypeDescription
Order NumberStringThe unique order number assigned in Shopify (e.g., #1001).
Shopify TokenCredentialsA token for authenticating to the Shopify Admin API.
Shopify DomainCredentialsThe store’s myshopify.com subdomain (e.g., your-store).

Outputs

NameTypeDescription
Found Orders ?Booleantrue if one or more orders matching the number were retrieved.
OrdersListArray of order objects that match the search criteria.
OrderShopifyOrderThe first matching order object, or null if none were found.

Notes

  • Uses Shopify Admin REST API version 2025-04 with the /orders.json?name={Order Number}&status=any endpoint.
  • Requires the access token to include the read_orders scope.
  • If no orders are found, Found Orders ? is false, Orders is an empty list, and Order is null.