Object to CSV

Hi, I was looking over the documentation below and had a question.

In my case, I need to export a CSV that is a combination of a variety of fields from multiple related tables. I had assumed that I would collect all the fields into a single object using codeless, and then I would write that object to CSV. As I look at the API service though it seems to be structured solely for outputting a specific table to CSV, not an object.

Is there a simple way to write an object in a data container to a CSV file?

Hi James,

Create a View with all the fields from different tables and treat it as a table in the API call.

Mark

Ahh, ok sounds good. I haven’t started to learn views and stuff so this will be a good opportunity for that. I’ll let you know if I run into any issues.