Shopify Search for Orders Basic Info by Email
The action retrieves the basic orders' information based on customer email.
Each order found by customer email will contain the following information:
- order_number
- fulfillment_status
Valid values:
- created_at (the date when the order was created)
- total_price
The action will return Success output = false and an empty list of orders in the following cases:
- If no customer is found based on the input email
- If the customer was found, but no orders were found for this customer
- If more than one customer is identified based on input email
Action Inputs
| Name | Description |
|---|---|
| Shopify Subdomain | Shopify sub-domain from store Shopify account. For example, if the URL of the store Shopify account is: https://digitalgenius.myshopify.com/ than the sub-domain is: digitalgenius |
| Shopify API Key | Shopify API key needed for authentication. Read here how to find your Shopify credentials. |
| Shopify API Secret | Shopify API secret. Read here how to find your Shopify credentials. |
| Customer Email | Customer email address based on which the order should be found. |
Action Outputs
| Name | Description |
|---|---|
| Success | Whether the orders were found or not. This output can be used in branching conditions to decide what the flow should do if the orders were found and if not. |
| Orders | List of found orders |
Output example:
Updated 7 months ago