Download File
<h2>Overview</h2>
<p>This endpoint is used to download a specific file associated with an order. By providing the <code>{orderId}</code> and <code>{fileId}</code>, you can retrieve and download the file. This functionality is useful for accessing documents, images, or any other files related to a particular order.</p>
<h2>Request</h2>
<ul>
<li>Method: <strong>GET</strong></li>
<li>URI: <code>/orders/{orderId}/files/{fileId}</code></li>
</ul>
<h2>Code Example</h2>
<pre><code>Request:
curl --location 'https://api.drayeasy.com/api/v2/orders/6129/files/364' \
--header 'Authorization: Bearer xxxxxxxxx'
Response:
HTTP/1.1 200 OK
Content-Type: image/jpeg;</code></pre>