Delete File
<h2>Overview</h2>
<p>This endpoint allows you to delete a specific file associated with an order. By providing the <code>{orderId}</code> and <code>{fileId}</code>, you can remove the file from the order's files collection. This action is irreversible, so use it with caution as it permanently deletes the specified file.</p>
<h2>Request</h2>
<ul>
<li>Method: <strong>DELETE</strong></li>
<li>URI: <code>/orders/{orderId}/files/{fileId}</code></li>
</ul>
<h2>Code Example</h2>
<pre><code>Request:
curl --location --request DELETE 'https://api.drayeasy.com/api/v2/orders/6129/files/378' \
--header 'Authorization: Bearer xxxxxxxxx'
Response:
HTTP/1.1 204 Not Content</code></pre>