Shopify MCP Server

complete-draft-order

Complete a draft order

Input Schema

NameRequiredDescriptionDefault
draftOrderIdYesID of the draft order to complete
variantIdYesID of the variant in the draft order

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "draftOrderId": { "description": "ID of the draft order to complete", "type": "string" }, "variantId": { "description": "ID of the variant in the draft order", "type": "string" } }, "required": [ "draftOrderId", "variantId" ], "type": "object" }