Shopify Complete Draft Order
This action finalizes a Shopify draft order, converting it into a regular order, and returns the completed draft order details.
Inputs
Name | Type | Description |
---|---|---|
Draft Order Id | String | The identifier of the draft order to be completed. |
Shopify Domain | String | The store’s myshopify.com subdomain (e.g., your-store ). |
Shopify Access Token | Credentials | A token (shpat_x ) with permissions to complete draft orders. |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Indicates whether the draft order was successfully completed. |
Draft Order | Object | The completed draft order details (present if Success is true ). |
Notes
- Uses Shopify Admin API version
2025-04
and the/draft_orders/{draft_order_id}/complete.json
endpoint. - If the operation fails,
Draft Order
will benull
andSuccess
will befalse
. - Ensure the access token has the
write_draft_orders
scope.
Updated 1 day ago