Is it possible to transfer data structures between Fusion teams | Community
Skip to main content
Level 3
April 15, 2025
Solved

Is it possible to transfer data structures between Fusion teams

  • April 15, 2025
  • 2 replies
  • 580 views

We can transfer scenarios using the blueprint export/import. However, we can't seem to do the same with data structures. 

I know it's possible to generate the data structure using example JSON, but if that's not available, we have to create it all from scratch. Perhaps it would help if there was a way to generate a sample JSON output from a data structure that would solve it. 

Anyone else know of a way to do this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by danperkins

One option is to use "Clone" in the Data Structure area of Fusion.

Go to the "Data structures" of the team where the data structure lives that you want to transfer.

 

After clicking "Clone", a pop-up will include the name and the Target Team to clone to. That's it!

 

Another option is to create a temporary scenario and use a JSON "Create JSON" module.

Select the structure you want to clone, fill out some generic data, then run the scenario once.

 

Select the bubble after it runs, then click to download "input".

 

Then copy the data (you can save it as a text file if needed)

 

and paste it in the "generator" when creating the new structure in the other Fusion Team. 

 

2 replies

Sven-iX
Community Advisor
Community Advisor
April 15, 2025

Hi @robertdy 
Sorry to say that Adobe deemed it smart to block those API requests. (they return 404)

You can hit the end-point data-structures and get IDs, but you cannot actually retrieve the data structures themselves. 

 

So no - even though Make.com's API supports this, Fusion's no longer does. Best I can recommend is this: 
open up a scenario, put in a "Create JSON" module. 
Pop open the developer tools and click the network tab. in the Filter box type "udt"

 

Then, back in Fusion, select the structure of choice. In the devtools you'll see the request and the payload - which is your JSON

 

danperkins
danperkinsAccepted solution
Level 2
April 24, 2025

One option is to use "Clone" in the Data Structure area of Fusion.

Go to the "Data structures" of the team where the data structure lives that you want to transfer.

 

After clicking "Clone", a pop-up will include the name and the Target Team to clone to. That's it!

 

Another option is to create a temporary scenario and use a JSON "Create JSON" module.

Select the structure you want to clone, fill out some generic data, then run the scenario once.

 

Select the bubble after it runs, then click to download "input".

 

Then copy the data (you can save it as a text file if needed)

 

and paste it in the "generator" when creating the new structure in the other Fusion Team. 

 

Sven-iX
Community Advisor
Community Advisor
April 25, 2025

Beautiful response @danperkins hope you're well!