# Delete Order File This endpoint allows you to delete a specific file associated with an order. By providing the orderId and fileId, 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. Endpoint: DELETE /orders/{orderId}/files/{fileId} Version: 1.0.0 Security: bearerAuth ## Path parameters: - `orderId` (integer, required) The ID of the order containing the file - `fileId` (integer, required) The ID of the file to delete ## Response 403 fields (application/json): - `error` (string) Example: "FORBIDDEN" - `errors` (array) - `message` (string) Example: "You do not have permission to delete this file" ## Response 204 fields ## Response 400 fields ## Response 401 fields