
Shopify Delete
CertifiedDelete Shopify order by ID
Shopify Delete
Delete Shopify order by ID
Deletes an order via the Shopify Admin API using store domain and access token. Operation is irreversible; Shopify returns HTTP 200 with empty body on success.
type: io.kestra.plugin.shopify.orders.DeleteExamples
Delete order by ID
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 Admin API access token sent as X-Shopify-Access-Token
orderId *Requiredintegerstring
Order ID
Shopify order ID to delete
storeDomain *Requiredstring
Shopify store domain
Store domain used for Admin API calls (e.g., my-store.myshopify.com)
apiVersion string
2024-10API version
Shopify Admin API version path segment; defaults to 2024-10
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
rateLimitDelay string
PT0.5SRate limit delay
Sleep between API calls to respect Shopify rate limits; default 500ms
Outputs
deleted boolean
Deletion status
True when Shopify responded 200 to the delete call
orderId integer
Deleted order ID
Order ID passed to the delete request