# Download Shipment File This endpoint is used to download a specific file associated with an FTL shipment. By providing the orderNumber and fileId, you can retrieve and download the file. This functionality is useful for accessing documents, images, or any other files related to a particular shipment. Endpoint: GET /api/v2/ftl/shipments/{orderNumber}/files/{fileId} Version: 1.0.0 Security: bearerAuth ## Path parameters: - `orderNumber` (string, required) The order number of the shipment (e.g., FS241205028749 or FTL13730) Example: "FS241205028749" - `fileId` (integer, required) The ID of the file to download Example: 785 ## 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: "File not found"