Shopify Check Order Refund
Checks if the order was refunded.
This action determines whether a Shopify order has been refunded by inspecting its refund transactions and financial status.
Inputs
Name | Type | Description |
---|---|---|
Order | Object | The Shopify order object containing refund details. |
Outputs
Name | Type | Description |
---|---|---|
refunded | Boolean | true if the order has one or more refunds; otherwise false . |
transactionStatus | String | Status of the first refund transaction. |
transactionCreatedAt | String | Creation timestamp of the first refund transaction. |
transactionProcessedAt | String | Processing timestamp of the first refund transaction. |
refundAmount | Number | Amount refunded in the first transaction. |
refundCurrency | String | Currency code of the refunded amount. |
financialStatus | String | Financial status of the order (e.g., refunded , paid , etc.). |
Notes
- Considers only the first refund transaction when multiple refunds exist.
- If no refunds are present, all transaction fields are
null
andrefunded
isfalse
.
Updated 18 days ago