get_order
Retrieve detailed order information using the order ID to access and manage specific data within the ShipHero MCP Server for streamlined order processing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_id | Yes | The ID of the order to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"order_id": {
"description": "The ID of the order to retrieve",
"type": "string"
}
},
"required": [
"order_id"
],
"type": "object"
}