Export flows to CSV

I know there is a backup option (paid), but I’m not looking for a backup…
I would like to extract all of my flows into a CSV for easy parsing (and reference)

Is there any way to do this?

Especially made for you: Archive Insights App for Homey | Homey

:kissing_heart:

Edit: oh wait… you want flows, not insights :rofl:

Never mind then

1 Like

Yeah, I saw that, but flows I’d like :+1:t2:

For Standard flows: It should (still) be possible using https://homeybackup.web.app/login
The backup still works afaik (restore probably not; but you weren’t interested in restoring)
You’ll find a JSON file with all flows in it

JSON snippet:
Screenshot_20220701-144905_Total Commander_copy_418x94~01

Not tested with Advanced Flows

1 Like

That should do the job! Awesome find.
Well have a good look over the weekend

2 Likes

I use flowviewer and then use the print option of the browser.
Not csv, but it is a readble printout of your flows

Go to https://tools.developer.homey.app/tools/api-playground

Homey.flow.getFlows();
// or 
Homey.flow.getAdvancedFlows();

Run
Use Inspect (in Chrome Ctrl-Shft-I) Look for Network - Flow
Copy Response

That is a nearly Perfect JSON, check that in fe My Favorit online JSON Tool https://jsonformatter.curiousconcept.com/#

Pls let me know how you converted this multi-value, multi dimensional complex object to a CSV format.

Struggling to make this work - wonder if you can help over on that thread? (or here)

I see you got it to work, great

1 Like

Yes thank you!

Can you share it please? Very curious.

I used @fkey s suggestion and the flow viewer. It’s not a CSV but does the job I need it to :+1:t2:

1 Like

Hi! This works like a charm! Thank you! Any idea how to import those back?