How to put data from CSV to JSON?
I have a CSV containing two "columns" 'User id' and 'email' example: User id,email 1234-1234-1234,[email protected] 321-1235-44432,[email protected] 322136231345,[email protected] And a JSON looking like this: [{ "externalId": "100000", "watchers": ["[email protected]", "[email protected]", "[email protected]"] }, { "externalId": "100002", "watchers": ["[email protected]", "[email protected]"] } ] What…