update-order
Modify Shopify order details such as email, shipping address, custom attributes, metafields, notes, and tags using the MCP server for streamlined order management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customAttributes | No | ||
No | |||
id | Yes | ||
metafields | No | ||
note | No | ||
shippingAddress | No | ||
tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customAttributes": {
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"type": "array"
},
"email": {
"format": "email",
"type": "string"
},
"id": {
"minLength": 1,
"type": "string"
},
"metafields": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"namespace": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
},
"type": "array"
},
"note": {
"type": "string"
},
"shippingAddress": {
"additionalProperties": false,
"properties": {
"address1": {
"type": "string"
},
"address2": {
"type": "string"
},
"city": {
"type": "string"
},
"company": {
"type": "string"
},
"country": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"phone": {
"type": "string"
},
"province": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"type": "object"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}