Bulk import customers to Stigg
After creating your product catalog in Stigg, you can import your existing customers into stigg.
This tool will manage the import process:
- It reads the list of customers to import from a
JSON
file containing. - It's idempotent - feel safe to re-run it.
Usage
Prepare input json file
Create a file input.json
that contains all the customers that should be imported into Stigg.
The file should be in the following schema:
{
"customers": [
{
"customerId": "lorem-ipsum",
"email": "lorem@ipsum.com",
"name": "lorem@ipsum.com",
"billingId": "cus_MvdQq1bVD1BQHe",
"subscription": {
"planId": "plan-local-env-p-1",
"billingPeriod": "MONTHLY",
"unitQuantity": 5,
"startDate": "2022-01-01T00:00:00.000Z"
},
"featuresUsage": {
"feature-seats": 9
}
}
]
}
Execute bulk import