Shopify Get Order Cancellation
This action retrieves cancellation details for a specified Shopify order, including whether a cancellation exists and any staff notes provided.
Inputs
Name | Type | Description |
---|---|---|
Order ID | String | The unique identifier of the Shopify order. |
Shopify Token | Credentials | A token for authenticating to the Shopify API. |
Shopify Domain | String | The storeβs myshopify.com subdomain. |
Outputs
Name | Type | Description |
---|---|---|
Cancellation Found? | Boolean | true if a cancellation with a staff note was found; otherwise false . |
Cancellation Staff Note | String | The note provided by staff upon cancellation (empty if none). |
Order | Object | The Shopify order object with cancellation details. |
Notes
- Uses Shopify Admin API version
2025-04
via GraphQL to fetch the cancellation object and staff note. - If no cancellation or note exists,
Cancellation Found?
isfalse
andCancellation Staff Note
is empty.
Updated about 8 hours ago