get_order
Retrieve detailed order information from ShipBob's fulfillment API by providing the order ID, enabling efficient order management and tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | The ID of the order to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderId": {
"description": "The ID of the order to retrieve",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}