I have exported customer service ticket data from Zendesk in json format. The problem with the Zendesk json export is that it is not formatted in a normal way. Before I'm able to use the Alteryx Input Data tool for json, I need to wrap the exported data in an array and comma-separate each line.
With small enough export files, I am able to do this in Notepad++ by doing the follow -
- Add the following as a first line in the file
- Add the following as a bottom line in the file
- Separate all the objects enclosed in { } with commas using find and replace
For a large file, is there a way for me to replicate the wrapping and comma-separating processes within Alteryx so that I'm able to read in the json file and work with it?
Thanks for the help!