Hello, I’m building a Make.com scenario to fetch and structure all my ClickUp data in this hierarchy:
- Spaces
- Contain Folders
- Each Folder contains Lists
- Some Lists may exist directly under the Space, not inside a Folder
I’d like to generate a structured output like this:
Space: [Space Name] (ID: xxx)
Folder: [Folder Name] (ID: yyy)
- List: [List Name] (ID: zzz)
- List: [List Name] (ID: zzz)
Lists without Folder:
- List: [List Name] (ID: zzz)
- List: [List Name] (ID: zzz)
It might be too complicated, but the one thing I want right now is to know how the data should be displayed or modules be structured when using the List All Spaces module along with the other “List” modules in between in order to bring all the “Space”, “Folder”, and “List” data into the final JSON module.
The problem I’m facing right now is that data from a previous module can only be retrieved if it’s directly before the current module, but not if there are other modules in between.
Is there a better way to do this? Please advise.