{
"name": "List Shipments",
"route": "GET /customer/shipment",
"description": "List all customer shipments.",
"parameters": [
{
"name": "limit",
"type": "number",
"description": "Number of shipments to return",
"required": false
}
],
"body": null,
"response": {
"success": {
"code": 200,
"description": "Returns an array of shipment objects"
},
"error": [
{
"code": 401,
"description": "Unauthorized - User is not authenticated"
},
{
"code": 403,
"description": "Forbidden - User does not have permission to access this resource"
}
]
},
"notes": [
"This endpoint requires authentication (InternalGuard and AuthorizationGuard).",
"Only returns shipments with status ShipReady, EnRoute, or Delivered."
]
}