# Get Shipment Files This endpoint allows you to retrieve files that are associated with a particular LTL shipment identified by orderNumber. It's useful for fetching documents, images, or any other files related to the shipment for viewing or downloading purposes. Endpoint: GET /api/ltl/shipments/{orderNumber}/files Version: 1.0.0 Security: bearerAuth ## Path parameters: - `orderNumber` (string, required) The order number of the shipment (e.g., LS241205028749) Example: "LS241205028749" ## Response 200 fields (application/json): - `data` (array) Array of uploaded file information - `data.id` (integer) Unique identifier for the document Example: 785 - `data.type` (string) Type of the document Example: "BOL" - `data.url` (string) URL to download the document Example: "https://api.drayeasy.com/api/ltl/shipments/LS241205028749/files/785" - `data.filename` (string) Original filename of the document Example: "BOL-LS241205028749.pdf" ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated." ## Response 403 fields (application/json): - `message` (string) Example: "You do not have permission to view this shipment" ## Response 404 fields (application/json): - `message` (string) Example: "Shipment not found"