...
The /file
endpoint has been split into two different calls. /file/download
and /file/detail
.
GET /file/download
will only return the download URL of the document. This will create an event and it is broadcasted via the webhook service.
GET /file/detail
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 from creating an event, which in turn stops any polling from constantly creating repeating events.The /file/upload
stays unchanged.
See Public API documentation for more detaildetails on calls and webhook events.