This isn’t particular to a specific app but more about Zapier actions in general.
Let’s say for example that I have a Clickup action in Zapier. It searches for a task by ID and also returns its subtasks. In another step, I want to pass that entire list of subtasks to an LLM. I need the full text output, even if it’s JSON or some other format (e.g. subtask, subtask ID, subtask name, etc all provided in one go). Example below:
But the problem is I can’t reference the complete output in other actions. I can only reference specific fields of the response, e.g. only subtask names, or only subtask IDs.
I can’t pass that to the LLM because the subtask names are not associated with the subtask IDs, whereas in a complete JSON/API response, they would be in arrays and objects so that the LLM could recognise and process the subtasks properly.
Short of converting my Zapier action into its own custom webhook action, is there any other way to get the full response from a Zapier action?