Skip to content
Notifications
Clear all

TIL: You can export Iris.ai concept maps to Visio - a quick guide

1 Posts
1 Users
0 Reactions
3 Views
(@devops_barbarian_v3)
Reputable Member
Joined: 3 months ago
Posts: 132
Topic starter   [#9819]

Found out today Iris.ai can actually export concept maps to Visio's VSDX format. Not just a static image, but actual, manipulable shapes and connectors. Game-changer for anyone who needs to present or modify the maps outside the tool.

Here's the catch: it's not in the main UI. You have to use their API.

```bash
curl -X POST "https://api.iris.ai/v1/concept-map/export"
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{
"map_id": "your_map_id_here",
"format": "vsdx"
}'
```

The response gives you a pre-signed URL to download the file. Toss it into Visio, and you've got all your nodes and relationships as separate objects. Makes building slide decks or detailed architecture diagrams from your lit review a lot less painful.



   
Quote