Синхронізація та імпорт
- Link your CSV file published on Google Sheets
- Link your CSV file hosted on your web server
- Dynamic CSV streaming from your app
Link your CSV file published on Google Sheets
Make your file available by publishing it to Google Sheets. You can easily link your Google Sheets document by setting up a share link.
Link your CSV file hosted on your web server
The file must be available for direct download from web or a FTP server.
An example of a valid HTTP link:
https://website.tld/uploads/datafile.csv
An example of a valid FTP link:
ftp://username:password@ftpserver.tld:21/path_to/file_name.csv
Dynamic CSV streaming from your app
To automatically sync with your app, you can provide us with a dynamic CSV stream generated by your app’s endpoint as a simple comma-delimited line-by-line text response with an appropriate HTTP header to indicate the correct MIME type.
Dynamic response example:
HTTP/1.1 200 OK Content-type: text/csv {Any other web server’s specific HTTP headers} ... Your CSV data is here ...