2 way sync between Clickup and Asan

We are hoping to connect ClickUp to Asana in a 2-way sync. Generally speaking, the workflow would initiate an Asana card to be created when a particular action is taken in CU. Once the Asana card has been created, as updates happen in either platform, we would want the two teams working in separate environments to automatically have visibility to the updates. No manual updating of the two spaces.

Ops and leadership work out of CU and Dev team in Asana.

Is this possible? Any tips and tricks? Are there any known limitations in syncing data between these two platforms?

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@Parker_Dunahay

That woud need a workflow to create a new entry the other application if the data is new or update it
Its basically about the logic you add to n8n eg if new task ceated on asane, moev to clickup
If new task created in clickup, update Asana

Then have a logic to first search the entry in the other app eg does this card exist in Asana, >> Yes, then do nothing
Did any data change in clickup >>> Do this in asana
This is the task from Asana created in clickup >>> Do nothing about that one

Good luck