From 82f3d4a16e3c37b60fce047e53154f4f0acd239c Mon Sep 17 00:00:00 2001 From: Neeraj Sharma <99neerajsharma@gmail.com> Date: Sun, 8 Jun 2025 12:48:35 +0530 Subject: [PATCH] create link requires add file name as 'add_file_name' not as 'add_filename' --- egnyte/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egnyte/resources.py b/egnyte/resources.py index d342418..19679b4 100644 --- a/egnyte/resources.py +++ b/egnyte/resources.py @@ -362,7 +362,7 @@ def create(self, path, type, accessibility, """ url = self._client.get_url(self._url_template) data = base.filter_none_values(dict(path=path, type=type, accessibility=accessibility, send_email=send_email, - copy_me=copy_me, notify=notify, add_filename=add_filename, link_to_current=link_to_current, + copy_me=copy_me, notify=notify, add_file_name=add_filename, link_to_current=link_to_current, expiry_clicks=expiry_clicks, expiry_date=base.date_format(expiry_date), recipients=recipients, message=message)) response = exc.default.check_json_response(self._client.POST(url, data))