Bulk Update SIMs
If you need to configure multiple Programmable Wireless SIMs on a single Twilio account, we have a Node.js script and a .csv
spreadsheet file which will help you do so.
The script will not allow you to transfer SIMs between accounts.
The script described in this guide is intended to be used if you are managing a fleet of Programmable Wireless SIMs, but it may also come in useful if you are looking for a code example that makes use of the Programmable Wireless API.
How to install the script
Make sure Node.js is installed .
Download the contents of this GitHub repository to a local directory.
Navigate to the local directory in a terminal,
Type
npm install
.
How to make a bulk update
Open the file
app.js
in your IDE or text editor.Enter your Auth Token on line 3.
Save
app.js
.Open
KORE Programmable Wireless - SIMs.csv
in any compatible spreadsheet app.Enter one SIM per row.
Only enter information in a row that you wish to update. Sim SIDs are required.
Export the spreadsheet as a
.csv
file to the same folder asapp.js
.app.js
looks for the filenameKORE Programmable Wireless - SIMs.csv
by default.
Start a terminal and
cd
to the directory whereapp.js
andKORE Programmable Wireless - SIMs.csv
are located.Type
npm start
.
You can find out what each column in the spreadsheet means by checking out the Sim resource documentation.
This snippet is in Node.js but it could have been written in any language capable of calling our REST APIs or accessing our SDKs.
Last updated