get_shipment
Retrieve detailed shipment information by providing a valid shipment ID through the ShipBob fulfillment API, enabling efficient tracking and management of e-commerce orders.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shipmentId | Yes | The ID of the shipment to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shipmentId": {
"description": "The ID of the shipment to retrieve",
"type": "string"
}
},
"required": [
"shipmentId"
],
"type": "object"
}