Shopify Find Order by Order Name (oAuth)

This action retrieves Shopify orders by their name using OAuth authentication. It returns a flag indicating whether any orders were found and the list of matching orders.


Inputs

NameTypeDescription
Order Number(Name)StringThe Shopify order name/number to search for.
Shopify TokenCredentialsA sensitive OAuth access token for the store.
Shopify DomainStringThe store’s myshopify.com subdomain.

Outputs

NameTypeDescription
Found Orders ?Booleantrue if one or more orders matching the name were retrieved.
OrdersListArray of orders matching the search criteria.

Notes

  • Uses Shopify Admin REST API version 2025-04 at the /orders.json?name={Order Number(Name)} endpoint.
  • Requires the OAuth token to include read_orders scope.
  • If no orders are found, Found Orders ? is false and Orders is an empty list.