update_order
Modify existing order details in the ShipHero system by providing the order ID and updated JSON data for accurate and efficient order management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_data | Yes | JSON string containing the updated order data | |
order_id | Yes | The ID of the order to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"order_data": {
"description": "JSON string containing the updated order data",
"type": "string"
},
"order_id": {
"description": "The ID of the order to update",
"type": "string"
}
},
"required": [
"order_id",
"order_data"
],
"type": "object"
}