How to archive NetSuite’s File Cabinet to Google Drive
If you want to archive and back up the files in your NetSuite File Cabinet to Google Drive, you can easily achieve this with a custom-built archiving application. In this article, I’ll outline the steps that you can take to build your own application written in your preferred programming language. If you’d rather skip the technical work, feel free to contact me – I’ve built a ready-to-deploy solution that many clients already use successfully.
The application can perform an initial sync to copy all the files from NetSuite to Google Drive. Then it can detect when new files are added to the File Cabinet and upload those new files to Google Drive. It also detects when existing files are updated and replaces the old file in the Google Drive backup.
Here’s a high-level overview of how you can build such a solution.
Step 1: Create a Google service account
A service account is a special kind of Google account used by an app, rather than a person, to authenticate and access Google APIs. You need a service account to be able to connect to and send files to Google Drive via the Google API.
You need to follow these instructions to create the Google service account: How to create a Google service account
At the end of that process you will download a JSON file containing the auth credentials. Your application will need to use this to connect to the Google Drive API.
Step 2: Create a Google shared drive
Up till May 2025, Google service accounts could have their own Google Drive folder, albeit limited to 15GB of space. When the service account uploaded the File Cabinet files those files would not be visible to anyone. The backup code would need to share the files with all your users. After that, these users would be able to see the files under ‘Shared with me’.
From May 2025 onwards, Google service accounts no longer have their own Google Drive space. Now you need to create a Google shared drive and give the service account access to the shared drive so that the File Cabinet files can be uploaded there.
- Go to Google Drive.
- On the left sidebar, click Shared drives.
- Click + New.
- Give it a name (e.g., NetSuiteBackup).
- Note down the Shared Drive ID (found in the URL when inside the drive).
- Now we need to give your Service Account access to the Shared Drive
- Open the Shared Drive.
- Click Manage members.
- Add your Service Account email as a member.
- Set the permission to “Content Manager” (so it can upload files).
Step 3: Enable the Google Drive API
You will need to enable the Google Drive API so that you can upload files to Google Drive using the application. Instructions for enabling the Google Drive API are here: How to enable the Google Drive API.
Step 4: Set up Token Based Authentication (TBA) in NetSuite
You will need to set up Token Based Authentication (TBA) in NetSuite so that your application can connect to NetSuite and extract data and files from the File Cabinet. You can find tnstructions for setting up TBA for NetSuite here: How to set up token-based authentication for NetSuite’s SuiteTalk REST API
Step 5: Code the application to do the backup
Now you have everything you need to be to code your application.
If you are using node.js, here is some Javascript code that shows you how to connect to NetSuite using TBA:
How to connect to NetSuite’s SuiteTalk REST API using node.js
If you are using Python, here is some Python code that does the same:
How to connect to NetSuite’s SuiteTalk REST API using Python
Of course, you can use any other programming language.
You need to connect to the NetSuite REST API or SOAP API to get the details of all the files in the File Cabinet. After that you can download the files one by one. This can presently only be done using SOAP not REST. Then you need to upload the files to Google Drive using the Google Drive API. For this part you will need the service account details and the Google Shared Drive ID. To make the process more efficient, you need to monitor file modified dates so that you don’t re-download and re-upload the same files over and over again. Rather, only new files or recently modified files should be downloaded from NetSuite and uploaded to Google Drive.
Conclusion
I’ve outlined an approach that you can take to back up your files from your NetSuite File Cabinet to Google Drive.
If you don’t want to build your own application, I can offer a working solution that is used by several clients. My application connects to NetSuite to do an initial sync to copy everything to Google Drive. Then it runs periodically to check if new files have been added to the File Cabinet or existing files have been updated. If that has happened, it then uploads those new and updated files to Google Drive. All of this can run on your own servers so that you have complete security and full control over the process.
If you are interested in this solution, please reach out to info@mubasoftware.com .