python-egnyte icon indicating copy to clipboard operation
python-egnyte copied to clipboard

Python client for the Egnyte Public API.

Results 17 python-egnyte issues
Sort by recently updated
recently updated
newest added

Running `group = client.groups.create('groupname')` raises an error. After debugging, the content of the request is: > '{"formErrors":[],"inputErrors":{"members":[{"code":"MEMBERS_FIELD_IS_REQUIRED","msg":"Members field is required."}]}}' Even though the HTTP documentation shows that members is optional....

There is a very strict limit on the number of requests that can be performed sequentially (2 per app per second). This means if you want to do several operations...

Recent updates to the audit reports framework mean that: 1) login, file and permissions reports now have the option to suppress report generation emails. This is not currently supported by...

Egnyte have recently updated the Events module to version 2 which also includes permissions change events by default. The codebase currently uses version 1 so misses the permission change events....

Comment for FileOrFolder.link says: * accessibility: Determines how the link can be accessed ('Anyone', 'Password', 'Domain', 'Recipients')" but I've had to use 'anyone' and 'domain'. It also says that expiry_date...

poll_delay is set to 1.0 by default and we want it to configurable and want custom polling like once ini 30 seconds or 45 seconds. Making frequent calls every 1...