Delete
Delete an order from Shopify store
Permanently delete an order from your Shopify store. Note: This action cannot be undone.
yaml
type: "io.kestra.plugin.shopify.orders.Delete"Examples
Delete order by ID
yaml
id: shopify_delete_order
namespace: company.team
tasks:
  - id: delete_order
    type: io.kestra.plugin.shopify.orders.Delete
    storeDomain: my-store.myshopify.com
    accessToken: "{{ secret('SHOPIFY_ACCESS_TOKEN') }}"
    orderId: 123456789
Properties
accessToken *Requiredstring
Admin API access token
Private app access token for Shopify Admin API
orderId *Requiredintegerstring
Order ID
The ID of the order to delete
storeDomain *Requiredstring
Shopify store domain
The domain of your Shopify store (e.g., 'my-store.myshopify.com')
apiVersion string
 Default 
2024-10API version
Shopify Admin API version to use
rateLimitDelay string
 Default 
PT0.5S Format 
durationRate limit delay
Delay between API calls to respect rate limits
Outputs
deleted boolean
Deletion status
Whether the order was successfully deleted
orderId integer
Deleted order ID
The ID of the order that was deleted