...
The /file
endpoint has been split into two different calls. /file/download
and /file/getdetaildetail
.
/file/download
will only return the download URL of the document. This will create an event and it is broadcasted via the webhook service.
/file/getdetaildetail
will return all the details about the file similar to the old /file
call. This will not create an event.
The purpose of this change was to stop the /file
GET method to create from creating an event. Which , which in turn stops any polling from constantly creating events when the response needed is just the file detailsrepeating events.
See Public API documentation for more detail.
...