me and colin have been having this super annoying issue with zapier <> riipen app, specifically with the survey responses endpoint. because zapier likes to parse jsons when they arrive, it kind of joins all of the answers into 1 comma separated list, which makes it really challenging to parse because many people’s answers (not to mention the questions themselves) include commas.
two possible fixes for this:
OPTION 1:
basically if you could set up the endpoints to also send a json_string, then we can easily parse that with code. hopefully, it should be as simple as adding an extra key-value pair called “response_json_string” or something, and then just doing a big json.dumps() or equivalent
OPTION 2:
create a survey_reponses api endpoint so that we can do a separate GET request