Hey @jamie.robson.89 - happy new year!
Yea so with the 1TCSV uploader at least you can add a header to each ‘row’ (item in the JSON), which would look something like this:
[
{
“customer”:“12093219083x12094129084”
“id”: 1,
“first_name”: “John”,
“last_name”: “Doe”,
“email”: “john.doe@example.com”,
“ip_address”: “192.168.1.1”
}
]
You could also add some custom parameters to the upload so that you don’t need to add the “customer” ID to the 100s or 1000s of rows your uploading (not that it really matters at that scale).
I’ve done this before to match the customer, company etc. or any other data that needs to be consistent but not explicity added with the CSV - it’s a great plugin.