I'm trying to implement a very simple single get call, and the response returns some text with a bunch of ids separated by newline (like a single column csv
). I want to save each one as a row in a dataset.
I understand that in general the Rest connector saves each response as a new row in an avro
file, which works well for json responses which can then be parsed in code.
However in my case I need it to just save the response in a txt
or csv
file, which I can then apply a schema to, getting each id in its own row. How can I achieve this?