It's not that I can't return a specific set of fields, it's that I want to return only a specific set of fields, instead of all of the row's column/value pairs.
So, I have this table here: Clay | Export to RecruitCRM setup in such a way that there's 3 columns that perform lookups to other tables within the worksheet ("Lookup Contact", "Lookup Company", "Lookup Job Openings").
It then has a 4th column, "Export Entities To RecruitCRM", which sends an HTTP request to an external webhook, sending the records that were looked up in the previous columns as the request's body.
This means that it is essentially sending every column/value pair as key/value pairs in the corresponding record's value, including columns that the external service which serves the webhook doesn't need to know about.
I know that I could theoretically configure the body of the request to only include the properties that I'd like for it to send, but to be honest doing so with Clay's formulas is rather clunky.
If I could make it so the columns that lookup the records only return a specific set of fields, then only those would be sent in the HTTP request
Let me know if I'm not explaining anything properly, happy to follow up, thanks!